corrade-nucleus-nucleons – Blame information for rev 20

Subversion Repositories:
Rev:
Rev Author Line No. Line
20 office 1 /* ***** BEGIN LICENSE BLOCK *****
2 * Distributed under the BSD license:
3 *
4 * Copyright (c) 2010, Ajax.org B.V.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are met:
9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * * Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * * Neither the name of Ajax.org B.V. nor the
15 * names of its contributors may be used to endorse or promote products
16 * derived from this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21 * DISCLAIMED. IN NO EVENT SHALL AJAX.ORG B.V. BE LIABLE FOR ANY
22 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 *
29 * ***** END LICENSE BLOCK ***** */
30  
31 /**
32 * Define a module along with a payload
33 * @param module a name for the payload
34 * @param payload a function to call with (require, exports, module) params
35 */
36  
37 (function() {
38  
39 var ACE_NAMESPACE = "ace";
40  
41 var global = (function() { return this; })();
42 if (!global && typeof window != "undefined") global = window; // strict mode
43  
44  
45 if (!ACE_NAMESPACE && typeof requirejs !== "undefined")
46 return;
47  
48  
49 var define = function(module, deps, payload) {
50 if (typeof module !== "string") {
51 if (define.original)
52 define.original.apply(this, arguments);
53 else {
54 console.error("dropping module because define wasn\'t a string.");
55 console.trace();
56 }
57 return;
58 }
59 if (arguments.length == 2)
60 payload = deps;
61 if (!define.modules[module]) {
62 define.payloads[module] = payload;
63 define.modules[module] = null;
64 }
65 };
66  
67 define.modules = {};
68 define.payloads = {};
69  
70 /**
71 * Get at functionality define()ed using the function above
72 */
73 var _require = function(parentId, module, callback) {
74 if (typeof module === "string") {
75 var payload = lookup(parentId, module);
76 if (payload != undefined) {
77 callback && callback();
78 return payload;
79 }
80 } else if (Object.prototype.toString.call(module) === "[object Array]") {
81 var params = [];
82 for (var i = 0, l = module.length; i < l; ++i) {
83 var dep = lookup(parentId, module[i]);
84 if (dep == undefined && require.original)
85 return;
86 params.push(dep);
87 }
88 return callback && callback.apply(null, params) || true;
89 }
90 };
91  
92 var require = function(module, callback) {
93 var packagedModule = _require("", module, callback);
94 if (packagedModule == undefined && require.original)
95 return require.original.apply(this, arguments);
96 return packagedModule;
97 };
98  
99 var normalizeModule = function(parentId, moduleName) {
100 // normalize plugin requires
101 if (moduleName.indexOf("!") !== -1) {
102 var chunks = moduleName.split("!");
103 return normalizeModule(parentId, chunks[0]) + "!" + normalizeModule(parentId, chunks[1]);
104 }
105 // normalize relative requires
106 if (moduleName.charAt(0) == ".") {
107 var base = parentId.split("/").slice(0, -1).join("/");
108 moduleName = base + "/" + moduleName;
109  
110 while(moduleName.indexOf(".") !== -1 && previous != moduleName) {
111 var previous = moduleName;
112 moduleName = moduleName.replace(/\/\.\//, "/").replace(/[^\/]+\/\.\.\//, "");
113 }
114 }
115 return moduleName;
116 };
117  
118 /**
119 * Internal function to lookup moduleNames and resolve them by calling the
120 * definition function if needed.
121 */
122 var lookup = function(parentId, moduleName) {
123 moduleName = normalizeModule(parentId, moduleName);
124  
125 var module = define.modules[moduleName];
126 if (!module) {
127 module = define.payloads[moduleName];
128 if (typeof module === 'function') {
129 var exports = {};
130 var mod = {
131 id: moduleName,
132 uri: '',
133 exports: exports,
134 packaged: true
135 };
136  
137 var req = function(module, callback) {
138 return _require(moduleName, module, callback);
139 };
140  
141 var returnValue = module(req, exports, mod);
142 exports = returnValue || mod.exports;
143 define.modules[moduleName] = exports;
144 delete define.payloads[moduleName];
145 }
146 module = define.modules[moduleName] = exports || module;
147 }
148 return module;
149 };
150  
151 function exportAce(ns) {
152 var root = global;
153 if (ns) {
154 if (!global[ns])
155 global[ns] = {};
156 root = global[ns];
157 }
158  
159 if (!root.define || !root.define.packaged) {
160 define.original = root.define;
161 root.define = define;
162 root.define.packaged = true;
163 }
164  
165 if (!root.require || !root.require.packaged) {
166 require.original = root.require;
167 root.require = require;
168 root.require.packaged = true;
169 }
170 }
171  
172 exportAce(ACE_NAMESPACE);
173  
174 })();
175  
176 ace.define("ace/lib/regexp",["require","exports","module"], function(require, exports, module) {
177 "use strict";
178  
179 var real = {
180 exec: RegExp.prototype.exec,
181 test: RegExp.prototype.test,
182 match: String.prototype.match,
183 replace: String.prototype.replace,
184 split: String.prototype.split
185 },
186 compliantExecNpcg = real.exec.call(/()??/, "")[1] === undefined, // check `exec` handling of nonparticipating capturing groups
187 compliantLastIndexIncrement = function () {
188 var x = /^/g;
189 real.test.call(x, "");
190 return !x.lastIndex;
191 }();
192  
193 if (compliantLastIndexIncrement && compliantExecNpcg)
194 return;
195 RegExp.prototype.exec = function (str) {
196 var match = real.exec.apply(this, arguments),
197 name, r2;
198 if ( typeof(str) == 'string' && match) {
199 if (!compliantExecNpcg && match.length > 1 && indexOf(match, "") > -1) {
200 r2 = RegExp(this.source, real.replace.call(getNativeFlags(this), "g", ""));
201 real.replace.call(str.slice(match.index), r2, function () {
202 for (var i = 1; i < arguments.length - 2; i++) {
203 if (arguments[i] === undefined)
204 match[i] = undefined;
205 }
206 });
207 }
208 if (this._xregexp && this._xregexp.captureNames) {
209 for (var i = 1; i < match.length; i++) {
210 name = this._xregexp.captureNames[i - 1];
211 if (name)
212 match[name] = match[i];
213 }
214 }
215 if (!compliantLastIndexIncrement && this.global && !match[0].length && (this.lastIndex > match.index))
216 this.lastIndex--;
217 }
218 return match;
219 };
220 if (!compliantLastIndexIncrement) {
221 RegExp.prototype.test = function (str) {
222 var match = real.exec.call(this, str);
223 if (match && this.global && !match[0].length && (this.lastIndex > match.index))
224 this.lastIndex--;
225 return !!match;
226 };
227 }
228  
229 function getNativeFlags (regex) {
230 return (regex.global ? "g" : "") +
231 (regex.ignoreCase ? "i" : "") +
232 (regex.multiline ? "m" : "") +
233 (regex.extended ? "x" : "") + // Proposed for ES4; included in AS3
234 (regex.sticky ? "y" : "");
235 }
236  
237 function indexOf (array, item, from) {
238 if (Array.prototype.indexOf) // Use the native array method if available
239 return array.indexOf(item, from);
240 for (var i = from || 0; i < array.length; i++) {
241 if (array[i] === item)
242 return i;
243 }
244 return -1;
245 }
246  
247 });
248  
249 ace.define("ace/lib/es5-shim",["require","exports","module"], function(require, exports, module) {
250  
251 function Empty() {}
252  
253 if (!Function.prototype.bind) {
254 Function.prototype.bind = function bind(that) { // .length is 1
255 var target = this;
256 if (typeof target != "function") {
257 throw new TypeError("Function.prototype.bind called on incompatible " + target);
258 }
259 var args = slice.call(arguments, 1); // for normal call
260 var bound = function () {
261  
262 if (this instanceof bound) {
263  
264 var result = target.apply(
265 this,
266 args.concat(slice.call(arguments))
267 );
268 if (Object(result) === result) {
269 return result;
270 }
271 return this;
272  
273 } else {
274 return target.apply(
275 that,
276 args.concat(slice.call(arguments))
277 );
278  
279 }
280  
281 };
282 if(target.prototype) {
283 Empty.prototype = target.prototype;
284 bound.prototype = new Empty();
285 Empty.prototype = null;
286 }
287 return bound;
288 };
289 }
290 var call = Function.prototype.call;
291 var prototypeOfArray = Array.prototype;
292 var prototypeOfObject = Object.prototype;
293 var slice = prototypeOfArray.slice;
294 var _toString = call.bind(prototypeOfObject.toString);
295 var owns = call.bind(prototypeOfObject.hasOwnProperty);
296 var defineGetter;
297 var defineSetter;
298 var lookupGetter;
299 var lookupSetter;
300 var supportsAccessors;
301 if ((supportsAccessors = owns(prototypeOfObject, "__defineGetter__"))) {
302 defineGetter = call.bind(prototypeOfObject.__defineGetter__);
303 defineSetter = call.bind(prototypeOfObject.__defineSetter__);
304 lookupGetter = call.bind(prototypeOfObject.__lookupGetter__);
305 lookupSetter = call.bind(prototypeOfObject.__lookupSetter__);
306 }
307 if ([1,2].splice(0).length != 2) {
308 if(function() { // test IE < 9 to splice bug - see issue #138
309 function makeArray(l) {
310 var a = new Array(l+2);
311 a[0] = a[1] = 0;
312 return a;
313 }
314 var array = [], lengthBefore;
315  
316 array.splice.apply(array, makeArray(20));
317 array.splice.apply(array, makeArray(26));
318  
319 lengthBefore = array.length; //46
320 array.splice(5, 0, "XXX"); // add one element
321  
322 lengthBefore + 1 == array.length
323  
324 if (lengthBefore + 1 == array.length) {
325 return true;// has right splice implementation without bugs
326 }
327 }()) {//IE 6/7
328 var array_splice = Array.prototype.splice;
329 Array.prototype.splice = function(start, deleteCount) {
330 if (!arguments.length) {
331 return [];
332 } else {
333 return array_splice.apply(this, [
334 start === void 0 ? 0 : start,
335 deleteCount === void 0 ? (this.length - start) : deleteCount
336 ].concat(slice.call(arguments, 2)))
337 }
338 };
339 } else {//IE8
340 Array.prototype.splice = function(pos, removeCount){
341 var length = this.length;
342 if (pos > 0) {
343 if (pos > length)
344 pos = length;
345 } else if (pos == void 0) {
346 pos = 0;
347 } else if (pos < 0) {
348 pos = Math.max(length + pos, 0);
349 }
350  
351 if (!(pos+removeCount < length))
352 removeCount = length - pos;
353  
354 var removed = this.slice(pos, pos+removeCount);
355 var insert = slice.call(arguments, 2);
356 var add = insert.length;
357 if (pos === length) {
358 if (add) {
359 this.push.apply(this, insert);
360 }
361 } else {
362 var remove = Math.min(removeCount, length - pos);
363 var tailOldPos = pos + remove;
364 var tailNewPos = tailOldPos + add - remove;
365 var tailCount = length - tailOldPos;
366 var lengthAfterRemove = length - remove;
367  
368 if (tailNewPos < tailOldPos) { // case A
369 for (var i = 0; i < tailCount; ++i) {
370 this[tailNewPos+i] = this[tailOldPos+i];
371 }
372 } else if (tailNewPos > tailOldPos) { // case B
373 for (i = tailCount; i--; ) {
374 this[tailNewPos+i] = this[tailOldPos+i];
375 }
376 } // else, add == remove (nothing to do)
377  
378 if (add && pos === lengthAfterRemove) {
379 this.length = lengthAfterRemove; // truncate array
380 this.push.apply(this, insert);
381 } else {
382 this.length = lengthAfterRemove + add; // reserves space
383 for (i = 0; i < add; ++i) {
384 this[pos+i] = insert[i];
385 }
386 }
387 }
388 return removed;
389 };
390 }
391 }
392 if (!Array.isArray) {
393 Array.isArray = function isArray(obj) {
394 return _toString(obj) == "[object Array]";
395 };
396 }
397 var boxedString = Object("a"),
398 splitString = boxedString[0] != "a" || !(0 in boxedString);
399  
400 if (!Array.prototype.forEach) {
401 Array.prototype.forEach = function forEach(fun /*, thisp*/) {
402 var object = toObject(this),
403 self = splitString && _toString(this) == "[object String]" ?
404 this.split("") :
405 object,
406 thisp = arguments[1],
407 i = -1,
408 length = self.length >>> 0;
409 if (_toString(fun) != "[object Function]") {
410 throw new TypeError(); // TODO message
411 }
412  
413 while (++i < length) {
414 if (i in self) {
415 fun.call(thisp, self[i], i, object);
416 }
417 }
418 };
419 }
420 if (!Array.prototype.map) {
421 Array.prototype.map = function map(fun /*, thisp*/) {
422 var object = toObject(this),
423 self = splitString && _toString(this) == "[object String]" ?
424 this.split("") :
425 object,
426 length = self.length >>> 0,
427 result = Array(length),
428 thisp = arguments[1];
429 if (_toString(fun) != "[object Function]") {
430 throw new TypeError(fun + " is not a function");
431 }
432  
433 for (var i = 0; i < length; i++) {
434 if (i in self)
435 result[i] = fun.call(thisp, self[i], i, object);
436 }
437 return result;
438 };
439 }
440 if (!Array.prototype.filter) {
441 Array.prototype.filter = function filter(fun /*, thisp */) {
442 var object = toObject(this),
443 self = splitString && _toString(this) == "[object String]" ?
444 this.split("") :
445 object,
446 length = self.length >>> 0,
447 result = [],
448 value,
449 thisp = arguments[1];
450 if (_toString(fun) != "[object Function]") {
451 throw new TypeError(fun + " is not a function");
452 }
453  
454 for (var i = 0; i < length; i++) {
455 if (i in self) {
456 value = self[i];
457 if (fun.call(thisp, value, i, object)) {
458 result.push(value);
459 }
460 }
461 }
462 return result;
463 };
464 }
465 if (!Array.prototype.every) {
466 Array.prototype.every = function every(fun /*, thisp */) {
467 var object = toObject(this),
468 self = splitString && _toString(this) == "[object String]" ?
469 this.split("") :
470 object,
471 length = self.length >>> 0,
472 thisp = arguments[1];
473 if (_toString(fun) != "[object Function]") {
474 throw new TypeError(fun + " is not a function");
475 }
476  
477 for (var i = 0; i < length; i++) {
478 if (i in self && !fun.call(thisp, self[i], i, object)) {
479 return false;
480 }
481 }
482 return true;
483 };
484 }
485 if (!Array.prototype.some) {
486 Array.prototype.some = function some(fun /*, thisp */) {
487 var object = toObject(this),
488 self = splitString && _toString(this) == "[object String]" ?
489 this.split("") :
490 object,
491 length = self.length >>> 0,
492 thisp = arguments[1];
493 if (_toString(fun) != "[object Function]") {
494 throw new TypeError(fun + " is not a function");
495 }
496  
497 for (var i = 0; i < length; i++) {
498 if (i in self && fun.call(thisp, self[i], i, object)) {
499 return true;
500 }
501 }
502 return false;
503 };
504 }
505 if (!Array.prototype.reduce) {
506 Array.prototype.reduce = function reduce(fun /*, initial*/) {
507 var object = toObject(this),
508 self = splitString && _toString(this) == "[object String]" ?
509 this.split("") :
510 object,
511 length = self.length >>> 0;
512 if (_toString(fun) != "[object Function]") {
513 throw new TypeError(fun + " is not a function");
514 }
515 if (!length && arguments.length == 1) {
516 throw new TypeError("reduce of empty array with no initial value");
517 }
518  
519 var i = 0;
520 var result;
521 if (arguments.length >= 2) {
522 result = arguments[1];
523 } else {
524 do {
525 if (i in self) {
526 result = self[i++];
527 break;
528 }
529 if (++i >= length) {
530 throw new TypeError("reduce of empty array with no initial value");
531 }
532 } while (true);
533 }
534  
535 for (; i < length; i++) {
536 if (i in self) {
537 result = fun.call(void 0, result, self[i], i, object);
538 }
539 }
540  
541 return result;
542 };
543 }
544 if (!Array.prototype.reduceRight) {
545 Array.prototype.reduceRight = function reduceRight(fun /*, initial*/) {
546 var object = toObject(this),
547 self = splitString && _toString(this) == "[object String]" ?
548 this.split("") :
549 object,
550 length = self.length >>> 0;
551 if (_toString(fun) != "[object Function]") {
552 throw new TypeError(fun + " is not a function");
553 }
554 if (!length && arguments.length == 1) {
555 throw new TypeError("reduceRight of empty array with no initial value");
556 }
557  
558 var result, i = length - 1;
559 if (arguments.length >= 2) {
560 result = arguments[1];
561 } else {
562 do {
563 if (i in self) {
564 result = self[i--];
565 break;
566 }
567 if (--i < 0) {
568 throw new TypeError("reduceRight of empty array with no initial value");
569 }
570 } while (true);
571 }
572  
573 do {
574 if (i in this) {
575 result = fun.call(void 0, result, self[i], i, object);
576 }
577 } while (i--);
578  
579 return result;
580 };
581 }
582 if (!Array.prototype.indexOf || ([0, 1].indexOf(1, 2) != -1)) {
583 Array.prototype.indexOf = function indexOf(sought /*, fromIndex */ ) {
584 var self = splitString && _toString(this) == "[object String]" ?
585 this.split("") :
586 toObject(this),
587 length = self.length >>> 0;
588  
589 if (!length) {
590 return -1;
591 }
592  
593 var i = 0;
594 if (arguments.length > 1) {
595 i = toInteger(arguments[1]);
596 }
597 i = i >= 0 ? i : Math.max(0, length + i);
598 for (; i < length; i++) {
599 if (i in self && self[i] === sought) {
600 return i;
601 }
602 }
603 return -1;
604 };
605 }
606 if (!Array.prototype.lastIndexOf || ([0, 1].lastIndexOf(0, -3) != -1)) {
607 Array.prototype.lastIndexOf = function lastIndexOf(sought /*, fromIndex */) {
608 var self = splitString && _toString(this) == "[object String]" ?
609 this.split("") :
610 toObject(this),
611 length = self.length >>> 0;
612  
613 if (!length) {
614 return -1;
615 }
616 var i = length - 1;
617 if (arguments.length > 1) {
618 i = Math.min(i, toInteger(arguments[1]));
619 }
620 i = i >= 0 ? i : length - Math.abs(i);
621 for (; i >= 0; i--) {
622 if (i in self && sought === self[i]) {
623 return i;
624 }
625 }
626 return -1;
627 };
628 }
629 if (!Object.getPrototypeOf) {
630 Object.getPrototypeOf = function getPrototypeOf(object) {
631 return object.__proto__ || (
632 object.constructor ?
633 object.constructor.prototype :
634 prototypeOfObject
635 );
636 };
637 }
638 if (!Object.getOwnPropertyDescriptor) {
639 var ERR_NON_OBJECT = "Object.getOwnPropertyDescriptor called on a " +
640 "non-object: ";
641 Object.getOwnPropertyDescriptor = function getOwnPropertyDescriptor(object, property) {
642 if ((typeof object != "object" && typeof object != "function") || object === null)
643 throw new TypeError(ERR_NON_OBJECT + object);
644 if (!owns(object, property))
645 return;
646  
647 var descriptor, getter, setter;
648 descriptor = { enumerable: true, configurable: true };
649 if (supportsAccessors) {
650 var prototype = object.__proto__;
651 object.__proto__ = prototypeOfObject;
652  
653 var getter = lookupGetter(object, property);
654 var setter = lookupSetter(object, property);
655 object.__proto__ = prototype;
656  
657 if (getter || setter) {
658 if (getter) descriptor.get = getter;
659 if (setter) descriptor.set = setter;
660 return descriptor;
661 }
662 }
663 descriptor.value = object[property];
664 return descriptor;
665 };
666 }
667 if (!Object.getOwnPropertyNames) {
668 Object.getOwnPropertyNames = function getOwnPropertyNames(object) {
669 return Object.keys(object);
670 };
671 }
672 if (!Object.create) {
673 var createEmpty;
674 if (Object.prototype.__proto__ === null) {
675 createEmpty = function () {
676 return { "__proto__": null };
677 };
678 } else {
679 createEmpty = function () {
680 var empty = {};
681 for (var i in empty)
682 empty[i] = null;
683 empty.constructor =
684 empty.hasOwnProperty =
685 empty.propertyIsEnumerable =
686 empty.isPrototypeOf =
687 empty.toLocaleString =
688 empty.toString =
689 empty.valueOf =
690 empty.__proto__ = null;
691 return empty;
692 }
693 }
694  
695 Object.create = function create(prototype, properties) {
696 var object;
697 if (prototype === null) {
698 object = createEmpty();
699 } else {
700 if (typeof prototype != "object")
701 throw new TypeError("typeof prototype["+(typeof prototype)+"] != 'object'");
702 var Type = function () {};
703 Type.prototype = prototype;
704 object = new Type();
705 object.__proto__ = prototype;
706 }
707 if (properties !== void 0)
708 Object.defineProperties(object, properties);
709 return object;
710 };
711 }
712  
713 function doesDefinePropertyWork(object) {
714 try {
715 Object.defineProperty(object, "sentinel", {});
716 return "sentinel" in object;
717 } catch (exception) {
718 }
719 }
720 if (Object.defineProperty) {
721 var definePropertyWorksOnObject = doesDefinePropertyWork({});
722 var definePropertyWorksOnDom = typeof document == "undefined" ||
723 doesDefinePropertyWork(document.createElement("div"));
724 if (!definePropertyWorksOnObject || !definePropertyWorksOnDom) {
725 var definePropertyFallback = Object.defineProperty;
726 }
727 }
728  
729 if (!Object.defineProperty || definePropertyFallback) {
730 var ERR_NON_OBJECT_DESCRIPTOR = "Property description must be an object: ";
731 var ERR_NON_OBJECT_TARGET = "Object.defineProperty called on non-object: "
732 var ERR_ACCESSORS_NOT_SUPPORTED = "getters & setters can not be defined " +
733 "on this javascript engine";
734  
735 Object.defineProperty = function defineProperty(object, property, descriptor) {
736 if ((typeof object != "object" && typeof object != "function") || object === null)
737 throw new TypeError(ERR_NON_OBJECT_TARGET + object);
738 if ((typeof descriptor != "object" && typeof descriptor != "function") || descriptor === null)
739 throw new TypeError(ERR_NON_OBJECT_DESCRIPTOR + descriptor);
740 if (definePropertyFallback) {
741 try {
742 return definePropertyFallback.call(Object, object, property, descriptor);
743 } catch (exception) {
744 }
745 }
746 if (owns(descriptor, "value")) {
747  
748 if (supportsAccessors && (lookupGetter(object, property) ||
749 lookupSetter(object, property)))
750 {
751 var prototype = object.__proto__;
752 object.__proto__ = prototypeOfObject;
753 delete object[property];
754 object[property] = descriptor.value;
755 object.__proto__ = prototype;
756 } else {
757 object[property] = descriptor.value;
758 }
759 } else {
760 if (!supportsAccessors)
761 throw new TypeError(ERR_ACCESSORS_NOT_SUPPORTED);
762 if (owns(descriptor, "get"))
763 defineGetter(object, property, descriptor.get);
764 if (owns(descriptor, "set"))
765 defineSetter(object, property, descriptor.set);
766 }
767  
768 return object;
769 };
770 }
771 if (!Object.defineProperties) {
772 Object.defineProperties = function defineProperties(object, properties) {
773 for (var property in properties) {
774 if (owns(properties, property))
775 Object.defineProperty(object, property, properties[property]);
776 }
777 return object;
778 };
779 }
780 if (!Object.seal) {
781 Object.seal = function seal(object) {
782 return object;
783 };
784 }
785 if (!Object.freeze) {
786 Object.freeze = function freeze(object) {
787 return object;
788 };
789 }
790 try {
791 Object.freeze(function () {});
792 } catch (exception) {
793 Object.freeze = (function freeze(freezeObject) {
794 return function freeze(object) {
795 if (typeof object == "function") {
796 return object;
797 } else {
798 return freezeObject(object);
799 }
800 };
801 })(Object.freeze);
802 }
803 if (!Object.preventExtensions) {
804 Object.preventExtensions = function preventExtensions(object) {
805 return object;
806 };
807 }
808 if (!Object.isSealed) {
809 Object.isSealed = function isSealed(object) {
810 return false;
811 };
812 }
813 if (!Object.isFrozen) {
814 Object.isFrozen = function isFrozen(object) {
815 return false;
816 };
817 }
818 if (!Object.isExtensible) {
819 Object.isExtensible = function isExtensible(object) {
820 if (Object(object) === object) {
821 throw new TypeError(); // TODO message
822 }
823 var name = '';
824 while (owns(object, name)) {
825 name += '?';
826 }
827 object[name] = true;
828 var returnValue = owns(object, name);
829 delete object[name];
830 return returnValue;
831 };
832 }
833 if (!Object.keys) {
834 var hasDontEnumBug = true,
835 dontEnums = [
836 "toString",
837 "toLocaleString",
838 "valueOf",
839 "hasOwnProperty",
840 "isPrototypeOf",
841 "propertyIsEnumerable",
842 "constructor"
843 ],
844 dontEnumsLength = dontEnums.length;
845  
846 for (var key in {"toString": null}) {
847 hasDontEnumBug = false;
848 }
849  
850 Object.keys = function keys(object) {
851  
852 if (
853 (typeof object != "object" && typeof object != "function") ||
854 object === null
855 ) {
856 throw new TypeError("Object.keys called on a non-object");
857 }
858  
859 var keys = [];
860 for (var name in object) {
861 if (owns(object, name)) {
862 keys.push(name);
863 }
864 }
865  
866 if (hasDontEnumBug) {
867 for (var i = 0, ii = dontEnumsLength; i < ii; i++) {
868 var dontEnum = dontEnums[i];
869 if (owns(object, dontEnum)) {
870 keys.push(dontEnum);
871 }
872 }
873 }
874 return keys;
875 };
876  
877 }
878 if (!Date.now) {
879 Date.now = function now() {
880 return new Date().getTime();
881 };
882 }
883 var ws = "\x09\x0A\x0B\x0C\x0D\x20\xA0\u1680\u180E\u2000\u2001\u2002\u2003" +
884 "\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028" +
885 "\u2029\uFEFF";
886 if (!String.prototype.trim || ws.trim()) {
887 ws = "[" + ws + "]";
888 var trimBeginRegexp = new RegExp("^" + ws + ws + "*"),
889 trimEndRegexp = new RegExp(ws + ws + "*$");
890 String.prototype.trim = function trim() {
891 return String(this).replace(trimBeginRegexp, "").replace(trimEndRegexp, "");
892 };
893 }
894  
895 function toInteger(n) {
896 n = +n;
897 if (n !== n) { // isNaN
898 n = 0;
899 } else if (n !== 0 && n !== (1/0) && n !== -(1/0)) {
900 n = (n > 0 || -1) * Math.floor(Math.abs(n));
901 }
902 return n;
903 }
904  
905 function isPrimitive(input) {
906 var type = typeof input;
907 return (
908 input === null ||
909 type === "undefined" ||
910 type === "boolean" ||
911 type === "number" ||
912 type === "string"
913 );
914 }
915  
916 function toPrimitive(input) {
917 var val, valueOf, toString;
918 if (isPrimitive(input)) {
919 return input;
920 }
921 valueOf = input.valueOf;
922 if (typeof valueOf === "function") {
923 val = valueOf.call(input);
924 if (isPrimitive(val)) {
925 return val;
926 }
927 }
928 toString = input.toString;
929 if (typeof toString === "function") {
930 val = toString.call(input);
931 if (isPrimitive(val)) {
932 return val;
933 }
934 }
935 throw new TypeError();
936 }
937 var toObject = function (o) {
938 if (o == null) { // this matches both null and undefined
939 throw new TypeError("can't convert "+o+" to object");
940 }
941 return Object(o);
942 };
943  
944 });
945  
946 ace.define("ace/lib/fixoldbrowsers",["require","exports","module","ace/lib/regexp","ace/lib/es5-shim"], function(require, exports, module) {
947 "use strict";
948  
949 require("./regexp");
950 require("./es5-shim");
951  
952 });
953  
954 ace.define("ace/lib/dom",["require","exports","module"], function(require, exports, module) {
955 "use strict";
956  
957 var XHTML_NS = "http://www.w3.org/1999/xhtml";
958  
959 exports.getDocumentHead = function(doc) {
960 if (!doc)
961 doc = document;
962 return doc.head || doc.getElementsByTagName("head")[0] || doc.documentElement;
963 }
964  
965 exports.createElement = function(tag, ns) {
966 return document.createElementNS ?
967 document.createElementNS(ns || XHTML_NS, tag) :
968 document.createElement(tag);
969 };
970  
971 exports.hasCssClass = function(el, name) {
972 var classes = (el.className + "").split(/\s+/g);
973 return classes.indexOf(name) !== -1;
974 };
975 exports.addCssClass = function(el, name) {
976 if (!exports.hasCssClass(el, name)) {
977 el.className += " " + name;
978 }
979 };
980 exports.removeCssClass = function(el, name) {
981 var classes = el.className.split(/\s+/g);
982 while (true) {
983 var index = classes.indexOf(name);
984 if (index == -1) {
985 break;
986 }
987 classes.splice(index, 1);
988 }
989 el.className = classes.join(" ");
990 };
991  
992 exports.toggleCssClass = function(el, name) {
993 var classes = el.className.split(/\s+/g), add = true;
994 while (true) {
995 var index = classes.indexOf(name);
996 if (index == -1) {
997 break;
998 }
999 add = false;
1000 classes.splice(index, 1);
1001 }
1002 if (add)
1003 classes.push(name);
1004  
1005 el.className = classes.join(" ");
1006 return add;
1007 };
1008 exports.setCssClass = function(node, className, include) {
1009 if (include) {
1010 exports.addCssClass(node, className);
1011 } else {
1012 exports.removeCssClass(node, className);
1013 }
1014 };
1015  
1016 exports.hasCssString = function(id, doc) {
1017 var index = 0, sheets;
1018 doc = doc || document;
1019  
1020 if (doc.createStyleSheet && (sheets = doc.styleSheets)) {
1021 while (index < sheets.length)
1022 if (sheets[index++].owningElement.id === id) return true;
1023 } else if ((sheets = doc.getElementsByTagName("style"))) {
1024 while (index < sheets.length)
1025 if (sheets[index++].id === id) return true;
1026 }
1027  
1028 return false;
1029 };
1030  
1031 exports.importCssString = function importCssString(cssText, id, doc) {
1032 doc = doc || document;
1033 if (id && exports.hasCssString(id, doc))
1034 return null;
1035  
1036 var style;
1037  
1038 if (id)
1039 cssText += "\n/*# sourceURL=ace/css/" + id + " */";
1040  
1041 if (doc.createStyleSheet) {
1042 style = doc.createStyleSheet();
1043 style.cssText = cssText;
1044 if (id)
1045 style.owningElement.id = id;
1046 } else {
1047 style = exports.createElement("style");
1048 style.appendChild(doc.createTextNode(cssText));
1049 if (id)
1050 style.id = id;
1051  
1052 exports.getDocumentHead(doc).appendChild(style);
1053 }
1054 };
1055  
1056 exports.importCssStylsheet = function(uri, doc) {
1057 if (doc.createStyleSheet) {
1058 doc.createStyleSheet(uri);
1059 } else {
1060 var link = exports.createElement('link');
1061 link.rel = 'stylesheet';
1062 link.href = uri;
1063  
1064 exports.getDocumentHead(doc).appendChild(link);
1065 }
1066 };
1067  
1068 exports.getInnerWidth = function(element) {
1069 return (
1070 parseInt(exports.computedStyle(element, "paddingLeft"), 10) +
1071 parseInt(exports.computedStyle(element, "paddingRight"), 10) +
1072 element.clientWidth
1073 );
1074 };
1075  
1076 exports.getInnerHeight = function(element) {
1077 return (
1078 parseInt(exports.computedStyle(element, "paddingTop"), 10) +
1079 parseInt(exports.computedStyle(element, "paddingBottom"), 10) +
1080 element.clientHeight
1081 );
1082 };
1083  
1084 exports.scrollbarWidth = function(document) {
1085 var inner = exports.createElement("ace_inner");
1086 inner.style.width = "100%";
1087 inner.style.minWidth = "0px";
1088 inner.style.height = "200px";
1089 inner.style.display = "block";
1090  
1091 var outer = exports.createElement("ace_outer");
1092 var style = outer.style;
1093  
1094 style.position = "absolute";
1095 style.left = "-10000px";
1096 style.overflow = "hidden";
1097 style.width = "200px";
1098 style.minWidth = "0px";
1099 style.height = "150px";
1100 style.display = "block";
1101  
1102 outer.appendChild(inner);
1103  
1104 var body = document.documentElement;
1105 body.appendChild(outer);
1106  
1107 var noScrollbar = inner.offsetWidth;
1108  
1109 style.overflow = "scroll";
1110 var withScrollbar = inner.offsetWidth;
1111  
1112 if (noScrollbar == withScrollbar) {
1113 withScrollbar = outer.clientWidth;
1114 }
1115  
1116 body.removeChild(outer);
1117  
1118 return noScrollbar-withScrollbar;
1119 };
1120  
1121 if (typeof document == "undefined") {
1122 exports.importCssString = function() {};
1123 return;
1124 }
1125  
1126 if (window.pageYOffset !== undefined) {
1127 exports.getPageScrollTop = function() {
1128 return window.pageYOffset;
1129 };
1130  
1131 exports.getPageScrollLeft = function() {
1132 return window.pageXOffset;
1133 };
1134 }
1135 else {
1136 exports.getPageScrollTop = function() {
1137 return document.body.scrollTop;
1138 };
1139  
1140 exports.getPageScrollLeft = function() {
1141 return document.body.scrollLeft;
1142 };
1143 }
1144  
1145 if (window.getComputedStyle)
1146 exports.computedStyle = function(element, style) {
1147 if (style)
1148 return (window.getComputedStyle(element, "") || {})[style] || "";
1149 return window.getComputedStyle(element, "") || {};
1150 };
1151 else
1152 exports.computedStyle = function(element, style) {
1153 if (style)
1154 return element.currentStyle[style];
1155 return element.currentStyle;
1156 };
1157 exports.setInnerHtml = function(el, innerHtml) {
1158 var element = el.cloneNode(false);//document.createElement("div");
1159 element.innerHTML = innerHtml;
1160 el.parentNode.replaceChild(element, el);
1161 return element;
1162 };
1163  
1164 if ("textContent" in document.documentElement) {
1165 exports.setInnerText = function(el, innerText) {
1166 el.textContent = innerText;
1167 };
1168  
1169 exports.getInnerText = function(el) {
1170 return el.textContent;
1171 };
1172 }
1173 else {
1174 exports.setInnerText = function(el, innerText) {
1175 el.innerText = innerText;
1176 };
1177  
1178 exports.getInnerText = function(el) {
1179 return el.innerText;
1180 };
1181 }
1182  
1183 exports.getParentWindow = function(document) {
1184 return document.defaultView || document.parentWindow;
1185 };
1186  
1187 });
1188  
1189 ace.define("ace/lib/oop",["require","exports","module"], function(require, exports, module) {
1190 "use strict";
1191  
1192 exports.inherits = function(ctor, superCtor) {
1193 ctor.super_ = superCtor;
1194 ctor.prototype = Object.create(superCtor.prototype, {
1195 constructor: {
1196 value: ctor,
1197 enumerable: false,
1198 writable: true,
1199 configurable: true
1200 }
1201 });
1202 };
1203  
1204 exports.mixin = function(obj, mixin) {
1205 for (var key in mixin) {
1206 obj[key] = mixin[key];
1207 }
1208 return obj;
1209 };
1210  
1211 exports.implement = function(proto, mixin) {
1212 exports.mixin(proto, mixin);
1213 };
1214  
1215 });
1216  
1217 ace.define("ace/lib/keys",["require","exports","module","ace/lib/fixoldbrowsers","ace/lib/oop"], function(require, exports, module) {
1218 "use strict";
1219  
1220 require("./fixoldbrowsers");
1221  
1222 var oop = require("./oop");
1223 var Keys = (function() {
1224 var ret = {
1225 MODIFIER_KEYS: {
1226 16: 'Shift', 17: 'Ctrl', 18: 'Alt', 224: 'Meta'
1227 },
1228  
1229 KEY_MODS: {
1230 "ctrl": 1, "alt": 2, "option" : 2, "shift": 4,
1231 "super": 8, "meta": 8, "command": 8, "cmd": 8
1232 },
1233  
1234 FUNCTION_KEYS : {
1235 8 : "Backspace",
1236 9 : "Tab",
1237 13 : "Return",
1238 19 : "Pause",
1239 27 : "Esc",
1240 32 : "Space",
1241 33 : "PageUp",
1242 34 : "PageDown",
1243 35 : "End",
1244 36 : "Home",
1245 37 : "Left",
1246 38 : "Up",
1247 39 : "Right",
1248 40 : "Down",
1249 44 : "Print",
1250 45 : "Insert",
1251 46 : "Delete",
1252 96 : "Numpad0",
1253 97 : "Numpad1",
1254 98 : "Numpad2",
1255 99 : "Numpad3",
1256 100: "Numpad4",
1257 101: "Numpad5",
1258 102: "Numpad6",
1259 103: "Numpad7",
1260 104: "Numpad8",
1261 105: "Numpad9",
1262 '-13': "NumpadEnter",
1263 112: "F1",
1264 113: "F2",
1265 114: "F3",
1266 115: "F4",
1267 116: "F5",
1268 117: "F6",
1269 118: "F7",
1270 119: "F8",
1271 120: "F9",
1272 121: "F10",
1273 122: "F11",
1274 123: "F12",
1275 144: "Numlock",
1276 145: "Scrolllock"
1277 },
1278  
1279 PRINTABLE_KEYS: {
1280 32: ' ', 48: '0', 49: '1', 50: '2', 51: '3', 52: '4', 53: '5',
1281 54: '6', 55: '7', 56: '8', 57: '9', 59: ';', 61: '=', 65: 'a',
1282 66: 'b', 67: 'c', 68: 'd', 69: 'e', 70: 'f', 71: 'g', 72: 'h',
1283 73: 'i', 74: 'j', 75: 'k', 76: 'l', 77: 'm', 78: 'n', 79: 'o',
1284 80: 'p', 81: 'q', 82: 'r', 83: 's', 84: 't', 85: 'u', 86: 'v',
1285 87: 'w', 88: 'x', 89: 'y', 90: 'z', 107: '+', 109: '-', 110: '.',
1286 186: ';', 187: '=', 188: ',', 189: '-', 190: '.', 191: '/', 192: '`',
1287 219: '[', 220: '\\',221: ']', 222: "'", 111: '/', 106: '*'
1288 }
1289 };
1290 var name, i;
1291 for (i in ret.FUNCTION_KEYS) {
1292 name = ret.FUNCTION_KEYS[i].toLowerCase();
1293 ret[name] = parseInt(i, 10);
1294 }
1295 for (i in ret.PRINTABLE_KEYS) {
1296 name = ret.PRINTABLE_KEYS[i].toLowerCase();
1297 ret[name] = parseInt(i, 10);
1298 }
1299 oop.mixin(ret, ret.MODIFIER_KEYS);
1300 oop.mixin(ret, ret.PRINTABLE_KEYS);
1301 oop.mixin(ret, ret.FUNCTION_KEYS);
1302 ret.enter = ret["return"];
1303 ret.escape = ret.esc;
1304 ret.del = ret["delete"];
1305 ret[173] = '-';
1306  
1307 (function() {
1308 var mods = ["cmd", "ctrl", "alt", "shift"];
1309 for (var i = Math.pow(2, mods.length); i--;) {
1310 ret.KEY_MODS[i] = mods.filter(function(x) {
1311 return i & ret.KEY_MODS[x];
1312 }).join("-") + "-";
1313 }
1314 })();
1315  
1316 ret.KEY_MODS[0] = "";
1317 ret.KEY_MODS[-1] = "input-";
1318  
1319 return ret;
1320 })();
1321 oop.mixin(exports, Keys);
1322  
1323 exports.keyCodeToString = function(keyCode) {
1324 var keyString = Keys[keyCode];
1325 if (typeof keyString != "string")
1326 keyString = String.fromCharCode(keyCode);
1327 return keyString.toLowerCase();
1328 };
1329  
1330 });
1331  
1332 ace.define("ace/lib/useragent",["require","exports","module"], function(require, exports, module) {
1333 "use strict";
1334 exports.OS = {
1335 LINUX: "LINUX",
1336 MAC: "MAC",
1337 WINDOWS: "WINDOWS"
1338 };
1339 exports.getOS = function() {
1340 if (exports.isMac) {
1341 return exports.OS.MAC;
1342 } else if (exports.isLinux) {
1343 return exports.OS.LINUX;
1344 } else {
1345 return exports.OS.WINDOWS;
1346 }
1347 };
1348 if (typeof navigator != "object")
1349 return;
1350  
1351 var os = (navigator.platform.match(/mac|win|linux/i) || ["other"])[0].toLowerCase();
1352 var ua = navigator.userAgent;
1353 exports.isWin = (os == "win");
1354 exports.isMac = (os == "mac");
1355 exports.isLinux = (os == "linux");
1356 exports.isIE =
1357 (navigator.appName == "Microsoft Internet Explorer" || navigator.appName.indexOf("MSAppHost") >= 0)
1358 ? parseFloat((ua.match(/(?:MSIE |Trident\/[0-9]+[\.0-9]+;.*rv:)([0-9]+[\.0-9]+)/)||[])[1])
1359 : parseFloat((ua.match(/(?:Trident\/[0-9]+[\.0-9]+;.*rv:)([0-9]+[\.0-9]+)/)||[])[1]); // for ie
1360  
1361 exports.isOldIE = exports.isIE && exports.isIE < 9;
1362 exports.isGecko = exports.isMozilla = (window.Controllers || window.controllers) && window.navigator.product === "Gecko";
1363 exports.isOldGecko = exports.isGecko && parseInt((ua.match(/rv:(\d+)/)||[])[1], 10) < 4;
1364 exports.isOpera = window.opera && Object.prototype.toString.call(window.opera) == "[object Opera]";
1365 exports.isWebKit = parseFloat(ua.split("WebKit/")[1]) || undefined;
1366  
1367 exports.isChrome = parseFloat(ua.split(" Chrome/")[1]) || undefined;
1368  
1369 exports.isAIR = ua.indexOf("AdobeAIR") >= 0;
1370  
1371 exports.isIPad = ua.indexOf("iPad") >= 0;
1372  
1373 exports.isTouchPad = ua.indexOf("TouchPad") >= 0;
1374  
1375 exports.isChromeOS = ua.indexOf(" CrOS ") >= 0;
1376  
1377 });
1378  
1379 ace.define("ace/lib/event",["require","exports","module","ace/lib/keys","ace/lib/useragent"], function(require, exports, module) {
1380 "use strict";
1381  
1382 var keys = require("./keys");
1383 var useragent = require("./useragent");
1384  
1385 var pressedKeys = null;
1386 var ts = 0;
1387  
1388 exports.addListener = function(elem, type, callback) {
1389 if (elem.addEventListener) {
1390 return elem.addEventListener(type, callback, false);
1391 }
1392 if (elem.attachEvent) {
1393 var wrapper = function() {
1394 callback.call(elem, window.event);
1395 };
1396 callback._wrapper = wrapper;
1397 elem.attachEvent("on" + type, wrapper);
1398 }
1399 };
1400  
1401 exports.removeListener = function(elem, type, callback) {
1402 if (elem.removeEventListener) {
1403 return elem.removeEventListener(type, callback, false);
1404 }
1405 if (elem.detachEvent) {
1406 elem.detachEvent("on" + type, callback._wrapper || callback);
1407 }
1408 };
1409 exports.stopEvent = function(e) {
1410 exports.stopPropagation(e);
1411 exports.preventDefault(e);
1412 return false;
1413 };
1414  
1415 exports.stopPropagation = function(e) {
1416 if (e.stopPropagation)
1417 e.stopPropagation();
1418 else
1419 e.cancelBubble = true;
1420 };
1421  
1422 exports.preventDefault = function(e) {
1423 if (e.preventDefault)
1424 e.preventDefault();
1425 else
1426 e.returnValue = false;
1427 };
1428 exports.getButton = function(e) {
1429 if (e.type == "dblclick")
1430 return 0;
1431 if (e.type == "contextmenu" || (useragent.isMac && (e.ctrlKey && !e.altKey && !e.shiftKey)))
1432 return 2;
1433 if (e.preventDefault) {
1434 return e.button;
1435 }
1436 else {
1437 return {1:0, 2:2, 4:1}[e.button];
1438 }
1439 };
1440  
1441 exports.capture = function(el, eventHandler, releaseCaptureHandler) {
1442 function onMouseUp(e) {
1443 eventHandler && eventHandler(e);
1444 releaseCaptureHandler && releaseCaptureHandler(e);
1445  
1446 exports.removeListener(document, "mousemove", eventHandler, true);
1447 exports.removeListener(document, "mouseup", onMouseUp, true);
1448 exports.removeListener(document, "dragstart", onMouseUp, true);
1449 }
1450  
1451 exports.addListener(document, "mousemove", eventHandler, true);
1452 exports.addListener(document, "mouseup", onMouseUp, true);
1453 exports.addListener(document, "dragstart", onMouseUp, true);
1454  
1455 return onMouseUp;
1456 };
1457  
1458 exports.addTouchMoveListener = function (el, callback) {
1459 if ("ontouchmove" in el) {
1460 var startx, starty;
1461 exports.addListener(el, "touchstart", function (e) {
1462 var touchObj = e.changedTouches[0];
1463 startx = touchObj.clientX;
1464 starty = touchObj.clientY;
1465 });
1466 exports.addListener(el, "touchmove", function (e) {
1467 var factor = 1,
1468 touchObj = e.changedTouches[0];
1469  
1470 e.wheelX = -(touchObj.clientX - startx) / factor;
1471 e.wheelY = -(touchObj.clientY - starty) / factor;
1472  
1473 startx = touchObj.clientX;
1474 starty = touchObj.clientY;
1475  
1476 callback(e);
1477 });
1478 }
1479 };
1480  
1481 exports.addMouseWheelListener = function(el, callback) {
1482 if ("onmousewheel" in el) {
1483 exports.addListener(el, "mousewheel", function(e) {
1484 var factor = 8;
1485 if (e.wheelDeltaX !== undefined) {
1486 e.wheelX = -e.wheelDeltaX / factor;
1487 e.wheelY = -e.wheelDeltaY / factor;
1488 } else {
1489 e.wheelX = 0;
1490 e.wheelY = -e.wheelDelta / factor;
1491 }
1492 callback(e);
1493 });
1494 } else if ("onwheel" in el) {
1495 exports.addListener(el, "wheel", function(e) {
1496 var factor = 0.35;
1497 switch (e.deltaMode) {
1498 case e.DOM_DELTA_PIXEL:
1499 e.wheelX = e.deltaX * factor || 0;
1500 e.wheelY = e.deltaY * factor || 0;
1501 break;
1502 case e.DOM_DELTA_LINE:
1503 case e.DOM_DELTA_PAGE:
1504 e.wheelX = (e.deltaX || 0) * 5;
1505 e.wheelY = (e.deltaY || 0) * 5;
1506 break;
1507 }
1508  
1509 callback(e);
1510 });
1511 } else {
1512 exports.addListener(el, "DOMMouseScroll", function(e) {
1513 if (e.axis && e.axis == e.HORIZONTAL_AXIS) {
1514 e.wheelX = (e.detail || 0) * 5;
1515 e.wheelY = 0;
1516 } else {
1517 e.wheelX = 0;
1518 e.wheelY = (e.detail || 0) * 5;
1519 }
1520 callback(e);
1521 });
1522 }
1523 };
1524  
1525 exports.addMultiMouseDownListener = function(elements, timeouts, eventHandler, callbackName) {
1526 var clicks = 0;
1527 var startX, startY, timer;
1528 var eventNames = {
1529 2: "dblclick",
1530 3: "tripleclick",
1531 4: "quadclick"
1532 };
1533  
1534 function onMousedown(e) {
1535 if (exports.getButton(e) !== 0) {
1536 clicks = 0;
1537 } else if (e.detail > 1) {
1538 clicks++;
1539 if (clicks > 4)
1540 clicks = 1;
1541 } else {
1542 clicks = 1;
1543 }
1544 if (useragent.isIE) {
1545 var isNewClick = Math.abs(e.clientX - startX) > 5 || Math.abs(e.clientY - startY) > 5;
1546 if (!timer || isNewClick)
1547 clicks = 1;
1548 if (timer)
1549 clearTimeout(timer);
1550 timer = setTimeout(function() {timer = null}, timeouts[clicks - 1] || 600);
1551  
1552 if (clicks == 1) {
1553 startX = e.clientX;
1554 startY = e.clientY;
1555 }
1556 }
1557  
1558 e._clicks = clicks;
1559  
1560 eventHandler[callbackName]("mousedown", e);
1561  
1562 if (clicks > 4)
1563 clicks = 0;
1564 else if (clicks > 1)
1565 return eventHandler[callbackName](eventNames[clicks], e);
1566 }
1567 function onDblclick(e) {
1568 clicks = 2;
1569 if (timer)
1570 clearTimeout(timer);
1571 timer = setTimeout(function() {timer = null}, timeouts[clicks - 1] || 600);
1572 eventHandler[callbackName]("mousedown", e);
1573 eventHandler[callbackName](eventNames[clicks], e);
1574 }
1575 if (!Array.isArray(elements))
1576 elements = [elements];
1577 elements.forEach(function(el) {
1578 exports.addListener(el, "mousedown", onMousedown);
1579 if (useragent.isOldIE)
1580 exports.addListener(el, "dblclick", onDblclick);
1581 });
1582 };
1583  
1584 var getModifierHash = useragent.isMac && useragent.isOpera && !("KeyboardEvent" in window)
1585 ? function(e) {
1586 return 0 | (e.metaKey ? 1 : 0) | (e.altKey ? 2 : 0) | (e.shiftKey ? 4 : 0) | (e.ctrlKey ? 8 : 0);
1587 }
1588 : function(e) {
1589 return 0 | (e.ctrlKey ? 1 : 0) | (e.altKey ? 2 : 0) | (e.shiftKey ? 4 : 0) | (e.metaKey ? 8 : 0);
1590 };
1591  
1592 exports.getModifierString = function(e) {
1593 return keys.KEY_MODS[getModifierHash(e)];
1594 };
1595  
1596 function normalizeCommandKeys(callback, e, keyCode) {
1597 var hashId = getModifierHash(e);
1598  
1599 if (!useragent.isMac && pressedKeys) {
1600 if (e.getModifierState && (e.getModifierState("OS") || e.getModifierState("Win")))
1601 hashId |= 8;
1602 if (pressedKeys.altGr) {
1603 if ((3 & hashId) != 3)
1604 pressedKeys.altGr = 0;
1605 else
1606 return;
1607 }
1608 if (keyCode === 18 || keyCode === 17) {
1609 var location = "location" in e ? e.location : e.keyLocation;
1610 if (keyCode === 17 && location === 1) {
1611 if (pressedKeys[keyCode] == 1)
1612 ts = e.timeStamp;
1613 } else if (keyCode === 18 && hashId === 3 && location === 2) {
1614 var dt = e.timeStamp - ts;
1615 if (dt < 50)
1616 < 50) pressedKeys.altGr = true;
1617 < 50) }
1618 < 50) }
1619 < 50) }
1620  
1621 < 50) if (keyCode in keys.MODIFIER_KEYS) {
1622 < 50) keyCode = -1;
1623 < 50) }
1624 < 50) if (hashId & 8 && (keyCode >= 91 && keyCode <= 93)) {
1625 < 50)<= 93)) { keyCode = -1;
1626 < 50)<= 93)) { }
1627  
1628 < 50)<= 93)) { if (!hashId && keyCode === 13) {
1629 < 50)<= 93)) { var location = "location" in e ? e.location : e.keyLocation;
1630 < 50)<= 93)) { if (location === 3) {
1631 < 50)<= 93)) { callback(e, hashId, -keyCode);
1632 < 50)<= 93)) { if (e.defaultPrevented)
1633 < 50)<= 93)) { return;
1634 < 50)<= 93)) { }
1635 < 50)<= 93)) { }
1636  
1637 < 50)<= 93)) { if (useragent.isChromeOS && hashId & 8) {
1638 < 50)<= 93)) { callback(e, hashId, keyCode);
1639 < 50)<= 93)) { if (e.defaultPrevented)
1640 < 50)<= 93)) { return;
1641 < 50)<= 93)) { else
1642 < 50)<= 93)) { hashId &= ~8;
1643 < 50)<= 93)) { }
1644 < 50)<= 93)) { if (!hashId && !(keyCode in keys.FUNCTION_KEYS) && !(keyCode in keys.PRINTABLE_KEYS)) {
1645 < 50)<= 93)) { return false;
1646 < 50)<= 93)) { }
1647  
1648 < 50)<= 93)) { return callback(e, hashId, keyCode);
1649 < 50)<= 93)) {}
1650  
1651  
1652 < 50)<= 93)) {exports.addCommandKeyListener = function(el, callback) {
1653 < 50)<= 93)) { var addListener = exports.addListener;
1654 < 50)<= 93)) { if (useragent.isOldGecko || (useragent.isOpera && !("KeyboardEvent" in window))) {
1655 < 50)<= 93)) { var lastKeyDownKeyCode = null;
1656 < 50)<= 93)) { addListener(el, "keydown", function(e) {
1657 < 50)<= 93)) { lastKeyDownKeyCode = e.keyCode;
1658 < 50)<= 93)) { });
1659 < 50)<= 93)) { addListener(el, "keypress", function(e) {
1660 < 50)<= 93)) { return normalizeCommandKeys(callback, e, lastKeyDownKeyCode);
1661 < 50)<= 93)) { });
1662 < 50)<= 93)) { } else {
1663 < 50)<= 93)) { var lastDefaultPrevented = null;
1664  
1665 < 50)<= 93)) { addListener(el, "keydown", function(e) {
1666 < 50)<= 93)) { pressedKeys[e.keyCode] = (pressedKeys[e.keyCode] || 0) + 1;
1667 < 50)<= 93)) { var result = normalizeCommandKeys(callback, e, e.keyCode);
1668 < 50)<= 93)) { lastDefaultPrevented = e.defaultPrevented;
1669 < 50)<= 93)) { return result;
1670 < 50)<= 93)) { });
1671  
1672 < 50)<= 93)) { addListener(el, "keypress", function(e) {
1673 < 50)<= 93)) { if (lastDefaultPrevented && (e.ctrlKey || e.altKey || e.shiftKey || e.metaKey)) {
1674 < 50)<= 93)) { exports.stopEvent(e);
1675 < 50)<= 93)) { lastDefaultPrevented = null;
1676 < 50)<= 93)) { }
1677 < 50)<= 93)) { });
1678  
1679 < 50)<= 93)) { addListener(el, "keyup", function(e) {
1680 < 50)<= 93)) { pressedKeys[e.keyCode] = null;
1681 < 50)<= 93)) { });
1682  
1683 < 50)<= 93)) { if (!pressedKeys) {
1684 < 50)<= 93)) { resetPressedKeys();
1685 < 50)<= 93)) { addListener(window, "focus", resetPressedKeys);
1686 < 50)<= 93)) { }
1687 < 50)<= 93)) { }
1688 < 50)<= 93)) {};
1689 < 50)<= 93)) {function resetPressedKeys() {
1690 < 50)<= 93)) { pressedKeys = Object.create(null);
1691 < 50)<= 93)) {}
1692  
1693 < 50)<= 93)) {if (typeof window == "object" && window.postMessage && !useragent.isOldIE) {
1694 < 50)<= 93)) { var postMessageId = 1;
1695 < 50)<= 93)) { exports.nextTick = function(callback, win) {
1696 < 50)<= 93)) { win = win || window;
1697 < 50)<= 93)) { var messageName = "zero-timeout-message-" + postMessageId;
1698 < 50)<= 93)) { exports.addListener(win, "message", function listener(e) {
1699 < 50)<= 93)) { if (e.data == messageName) {
1700 < 50)<= 93)) { exports.stopPropagation(e);
1701 < 50)<= 93)) { exports.removeListener(win, "message", listener);
1702 < 50)<= 93)) { callback();
1703 < 50)<= 93)) { }
1704 < 50)<= 93)) { });
1705 < 50)<= 93)) { win.postMessage(messageName, "*");
1706 < 50)<= 93)) { };
1707 < 50)<= 93)) {}
1708  
1709  
1710 < 50)<= 93)) {exports.nextFrame = typeof window == "object" && (window.requestAnimationFrame
1711 < 50)<= 93)) { || window.mozRequestAnimationFrame
1712 < 50)<= 93)) { || window.webkitRequestAnimationFrame
1713 < 50)<= 93)) { || window.msRequestAnimationFrame
1714 < 50)<= 93)) { || window.oRequestAnimationFrame);
1715  
1716 < 50)<= 93)) {if (exports.nextFrame)
1717 < 50)<= 93)) { exports.nextFrame = exports.nextFrame.bind(window);
1718 < 50)<= 93)) {else
1719 < 50)<= 93)) { exports.nextFrame = function(callback) {
1720 < 50)<= 93)) { setTimeout(callback, 17);
1721 < 50)<= 93)) { };
1722 < 50)<= 93)) {});
1723  
1724 < 50)<= 93)) {ace.define("ace/lib/lang",["require","exports","module"], function(require, exports, module) {
1725 < 50)<= 93)) {"use strict";
1726  
1727 < 50)<= 93)) {exports.last = function(a) {
1728 < 50)<= 93)) { return a[a.length - 1];
1729 < 50)<= 93)) {};
1730  
1731 < 50)<= 93)) {exports.stringReverse = function(string) {
1732 < 50)<= 93)) { return string.split("").reverse().join("");
1733 < 50)<= 93)) {};
1734  
1735 < 50)<= 93)) {exports.stringRepeat = function (string, count) {
1736 < 50)<= 93)) { var result = '';
1737 < 50)<= 93)) { while (count > 0) {
1738 < 50)<= 93)) { if (count & 1)
1739 < 50)<= 93)) { result += string;
1740  
1741 < 50)<= 93)) { if (count >>= 1)
1742 < 50)<= 93)) { string += string;
1743 < 50)<= 93)) { }
1744 < 50)<= 93)) { return result;
1745 < 50)<= 93)) {};
1746  
1747 < 50)<= 93)) {var trimBeginRegexp = /^\s\s*/;
1748 < 50)<= 93)) {var trimEndRegexp = /\s\s*$/;
1749  
1750 < 50)<= 93)) {exports.stringTrimLeft = function (string) {
1751 < 50)<= 93)) { return string.replace(trimBeginRegexp, '');
1752 < 50)<= 93)) {};
1753  
1754 < 50)<= 93)) {exports.stringTrimRight = function (string) {
1755 < 50)<= 93)) { return string.replace(trimEndRegexp, '');
1756 < 50)<= 93)) {};
1757  
1758 < 50)<= 93)) {exports.copyObject = function(obj) {
1759 < 50)<= 93)) { var copy = {};
1760 < 50)<= 93)) { for (var key in obj) {
1761 < 50)<= 93)) { copy[key] = obj[key];
1762 < 50)<= 93)) { }
1763 < 50)<= 93)) { return copy;
1764 < 50)<= 93)) {};
1765  
1766 < 50)<= 93)) {exports.copyArray = function(array){
1767 < 50)<= 93)) { var copy = [];
1768 < 50)<= 93)) { for (var i=0, l=array.length; i
1769 < 50)<= 93)) {
1770 < 50)<= 93)) {
1771 < 50)<= 93)) {
1772 < 50)<= 93)) {
1773 < 50)<= 93)) {
1774 < 50)<= 93)) {
1775 < 50)<= 93)) {
1776  
1777 < 50)<= 93)) {
1778 < 50)<= 93)) {
1779 < 50)<= 93)) {
1780 < 50)<= 93)) {
1781 < 50)<= 93)) {
1782 < 50)<= 93)) {
1783 < 50)<= 93)) {
1784 < 50)<= 93)) {
1785 < 50)<= 93)) {
1786 < 50)<= 93)) {
1787 < 50)<= 93)) {
1788 < 50)<= 93)) {
1789 < 50)<= 93)) {
1790  
1791 < 50)<= 93)) {
1792 < 50)<= 93)) {
1793 < 50)<= 93)) {
1794 < 50)<= 93)) {
1795 < 50)<= 93)) {
1796  
1797 < 50)<= 93)) {
1798 < 50)<= 93)) {
1799 < 50)<= 93)) {
1800 < 50)<= 93)) {
1801 < 50)<= 93)) {
1802 < 50)<= 93)) {
1803  
1804 < 50)<= 93)) {
1805  
1806 < 50)<= 93)) {
1807 < 50)<= 93)) {
1808 < 50)<= 93)) {
1809 < 50)<= 93)) {
1810 < 50)<= 93)) {
1811 < 50)<= 93)) {
1812 < 50)<= 93)) {
1813 < 50)<= 93)) {
1814 < 50)<= 93)) {
1815 < 50)<= 93)) {
1816 < 50)<= 93)) {
1817 < 50)<= 93)) {
1818 < 50)<= 93)) {
1819 < 50)<= 93)) {
1820  
1821 < 50)<= 93)) {
1822 < 50)<= 93)) {([.*+?^${}()|[\]\/\\])/g, '\\$1');
1823 < 50)<= 93)) {
1824  
1825 < 50)<= 93)) {function(str) {
1826 < 50)<= 93)) {return str.replace(/&/g, "&#38;").replace(/"/g, "&#34;").replace(/'/g, "&#39;").replace(/g, "&#60;");
1827 < 50)<= 93)) {
1828  
1829 < 50)<= 93)) {function(string, regExp) {
1830 < 50)<= 93)) {var matches = [];
1831  
1832 < 50)<= 93)) {function(str) {
1833 < 50)<= 93)) {
1834 < 50)<= 93)) {
1835 < 50)<= 93)) {
1836 < 50)<= 93)) {
1837 < 50)<= 93)) {
1838  
1839 < 50)<= 93)) {return matches;
1840 < 50)<= 93)) {
1841 < 50)<= 93)) {function(fcn) {
1842 < 50)<= 93)) {var timer = null;
1843 < 50)<= 93)) {var callback = function() {
1844 < 50)<= 93)) {null;
1845 < 50)<= 93)) {
1846 < 50)<= 93)) {
1847  
1848 < 50)<= 93)) {var deferred = function(timeout) {
1849 < 50)<= 93)) {
1850 < 50)<= 93)) {
1851 < 50)<= 93)) {return deferred;
1852 < 50)<= 93)) {
1853  
1854 < 50)<= 93)) {
1855  
1856 < 50)<= 93)) {function() {
1857 < 50)<= 93)) {this.cancel();
1858 < 50)<= 93)) {
1859 < 50)<= 93)) {return deferred;
1860 < 50)<= 93)) {
1861  
1862 < 50)<= 93)) {function() {
1863 < 50)<= 93)) {
1864 < 50)<= 93)) {null;
1865 < 50)<= 93)) {return deferred;
1866 < 50)<= 93)) {
1867  
1868 < 50)<= 93)) {function() {
1869 < 50)<= 93)) {return timer;
1870 < 50)<= 93)) {
1871  
1872 < 50)<= 93)) {return deferred;
1873 < 50)<= 93)) {
1874  
1875  
1876 < 50)<= 93)) {function(fcn, defaultTimeout) {
1877 < 50)<= 93)) {var timer = null;
1878 < 50)<= 93)) {var callback = function() {
1879 < 50)<= 93)) {null;
1880 < 50)<= 93)) {
1881 < 50)<= 93)) {
1882  
1883 < 50)<= 93)) {var _self = function(timeout) {
1884 < 50)<= 93)) {if (timer == null)
1885 < 50)<= 93)) {
1886 < 50)<= 93)) {
1887  
1888 < 50)<= 93)) {function(timeout) {
1889 < 50)<= 93)) {
1890 < 50)<= 93)) {
1891 < 50)<= 93)) {
1892 < 50)<= 93)) {
1893  
1894 < 50)<= 93)) {function() {
1895 < 50)<= 93)) {this.cancel();
1896 < 50)<= 93)) {
1897 < 50)<= 93)) {
1898  
1899 < 50)<= 93)) {function() {
1900 < 50)<= 93)) {
1901 < 50)<= 93)) {null;
1902 < 50)<= 93)) {
1903  
1904 < 50)<= 93)) {function() {
1905 < 50)<= 93)) {return timer;
1906 < 50)<= 93)) {
1907  
1908 < 50)<= 93)) {return _self;
1909 < 50)<= 93)) {
1910 < 50)<= 93)) {
1911  
1912 < 50)<= 93)) {"ace/keyboard/textinput",["require","exports","module","ace/lib/event","ace/lib/useragent","ace/lib/dom","ace/lib/lang"], function(require, exports, module) {
1913 < 50)<= 93)) {"use strict";
1914  
1915 < 50)<= 93)) {var event = require("../lib/event");
1916 < 50)<= 93)) {var useragent = require("../lib/useragent");
1917 < 50)<= 93)) {var dom = require("../lib/dom");
1918 < 50)<= 93)) {var lang = require("../lib/lang");
1919 < 50)<= 93)) {var BROKEN_SETDATA = useragent.isChrome < 18;
1920 < 50)<= 93)) {var USE_IE_MIME_TYPE = useragent.isIE;
1921  
1922 < 50)<= 93)) {var TextInput = function(parentNode, host) {
1923 < 50)<= 93)) {var text = dom.createElement("textarea");
1924 < 50)<= 93)) {"ace_text-input";
1925  
1926 < 50)<= 93)) {if (useragent.isTouchPad)
1927 < 50)<= 93)) {"x-palm-disable-auto-cap", true);
1928  
1929 < 50)<= 93)) {"wrap", "off");
1930 < 50)<= 93)) {"autocorrect", "off");
1931 < 50)<= 93)) {"autocapitalize", "off");
1932 < 50)<= 93)) {"spellcheck", false);
1933  
1934 < 50)<= 93)) {"0";
1935 < 50)<= 93)) {if (useragent.isOldIE) text.style.top = "-1000px";
1936 < 50)<= 93)) {
1937  
1938 < 50)<= 93)) {var PLACEHOLDER = "\x01\x01";
1939  
1940 < 50)<= 93)) {var copied = false;
1941 < 50)<= 93)) {var pasted = false;
1942 < 50)<= 93)) {var inComposition = false;
1943 < 50)<= 93)) {var tempStyle = '';
1944 < 50)<= 93)) {var isSelectionEmpty = true;
1945 < 50)<= 93)) {try { var isFocused = document.activeElement === text; } catch(e) {}
1946  
1947 < 50)<= 93)) {"blur", function(e) {
1948 < 50)<= 93)) {
1949 < 50)<= 93)) {false;
1950 < 50)<= 93)) {
1951 < 50)<= 93)) {"focus", function(e) {
1952 < 50)<= 93)) {true;
1953 < 50)<= 93)) {
1954 < 50)<= 93)) {
1955 < 50)<= 93)) {
1956 < 50)<= 93)) {this.focus = function() {
1957 < 50)<= 93)) {if (tempStyle) return text.focus();
1958 < 50)<= 93)) {var top = text.style.top;
1959 < 50)<= 93)) {"fixed";
1960 < 50)<= 93)) {"0px";
1961 < 50)<= 93)) {
1962 < 50)<= 93)) {function() {
1963 < 50)<= 93)) {"";
1964 < 50)<= 93)) {if (text.style.top == "0px")
1965 < 50)<= 93)) {
1966 < 50)<= 93)) {
1967 < 50)<= 93)) {
1968 < 50)<= 93)) {this.blur = function() {
1969 < 50)<= 93)) {
1970 < 50)<= 93)) {
1971 < 50)<= 93)) {this.isFocused = function() {
1972 < 50)<= 93)) {return isFocused;
1973 < 50)<= 93)) {
1974 < 50)<= 93)) {var syncSelection = lang.delayedCall(function() {
1975 < 50)<= 93)) {
1976 < 50)<= 93)) {
1977 < 50)<= 93)) {var syncValue = lang.delayedCall(function() {
1978 < 50)<= 93)) {if (!inComposition) {
1979 < 50)<= 93)) {
1980 < 50)<= 93)) {
1981 < 50)<= 93)) {
1982 < 50)<= 93)) {
1983  
1984 < 50)<= 93)) {function resetSelection(isEmpty) {
1985 < 50)<= 93)) {if (inComposition)
1986 < 50)<= 93)) {return;
1987 < 50)<= 93)) {true;
1988  
1989 < 50)<= 93)) {if (inputHandler) {
1990 < 50)<= 93)) {
1991 < 50)<= 93)) {
1992 < 50)<= 93)) {else {
1993 < 50)<= 93)) {var selectionStart = isEmpty ? 2 : 1;
1994 < 50)<= 93)) {var selectionEnd = 2;
1995 < 50)<= 93)) {
1996 < 50)<= 93)) {try {
1997 < 50)<= 93)) {
1998 < 50)<= 93)) {catch(e){}
1999  
2000 < 50)<= 93)) {false;
2001 < 50)<= 93)) {
2002  
2003 < 50)<= 93)) {function resetValue() {
2004 < 50)<= 93)) {if (inComposition)
2005 < 50)<= 93)) {return;
2006 < 50)<= 93)) {
2007 < 50)<= 93)) {if (useragent.isWebKit)
2008 < 50)<= 93)) {
2009 < 50)<= 93)) {
2010  
2011 < 50)<= 93)) {'changeSelection', function() {
2012 < 50)<= 93)) {if (host.selection.isEmpty() != isSelectionEmpty) {
2013 < 50)<= 93)) {
2014 < 50)<= 93)) {
2015 < 50)<= 93)) {
2016 < 50)<= 93)) {
2017  
2018 < 50)<= 93)) {
2019 < 50)<= 93)) {if (isFocused)
2020 < 50)<= 93)) {
2021  
2022  
2023 < 50)<= 93)) {var isAllSelected = function(text) {
2024 < 50)<= 93)) {return text.selectionStart === 0 && text.selectionEnd === text.value.length;
2025 < 50)<= 93)) {
2026 < 50)<= 93)) {if (!text.setSelectionRange && text.createTextRange) {
2027 < 50)<= 93)) {function(selectionStart, selectionEnd) {
2028 < 50)<= 93)) {var range = this.createTextRange();
2029 < 50)<= 93)) {true);
2030 < 50)<= 93)) {'character', selectionStart);
2031 < 50)<= 93)) {'character', selectionEnd);
2032 < 50)<= 93)) {
2033 < 50)<= 93)) {
2034 < 50)<= 93)) {function(text) {
2035 < 50)<= 93)) {try {
2036 < 50)<= 93)) {var range = text.ownerDocument.selection.createRange();
2037 < 50)<= 93)) {catch(e) {}
2038 < 50)<= 93)) {if (!range || range.parentElement() != text) return false;
2039 < 50)<= 93)) {return range.text == text.value;
2040 < 50)<= 93)) {
2041 < 50)<= 93)) {
2042 < 50)<= 93)) {if (useragent.isOldIE) {
2043 < 50)<= 93)) {var inPropertyChange = false;
2044 < 50)<= 93)) {var onPropertyChange = function(e){
2045 < 50)<= 93)) {if (inPropertyChange)
2046 < 50)<= 93)) {return;
2047 < 50)<= 93)) {var data = text.value;
2048 < 50)<= 93)) {if (inComposition || !data || data == PLACEHOLDER)
2049 < 50)<= 93)) {return;
2050 < 50)<= 93)) {if (e && data == PLACEHOLDER[0])
2051 < 50)<= 93)) {return syncProperty.schedule();
2052  
2053 < 50)<= 93)) {
2054 < 50)<= 93)) {true;
2055 < 50)<= 93)) {
2056 < 50)<= 93)) {false;
2057 < 50)<= 93)) {
2058 < 50)<= 93)) {var syncProperty = lang.delayedCall(onPropertyChange);
2059 < 50)<= 93)) {"propertychange", onPropertyChange);
2060  
2061 < 50)<= 93)) {var keytable = { 13:1, 27:1 };
2062 < 50)<= 93)) {"keyup", function (e) {
2063 < 50)<= 93)) {if (inComposition && (!text.value || keytable[e.keyCode]))
2064 < 50)<= 93)) {
2065 < 50)<= 93)) {if ((text.value.charCodeAt(0)||0) < 129) {
2066 < 50)<= 93)) {return syncProperty.call();
2067 < 50)<= 93)) {
2068 < 50)<= 93)) {
2069 < 50)<= 93)) {
2070 < 50)<= 93)) {"keydown", function (e) {
2071 < 50)<= 93)) {
2072 < 50)<= 93)) {
2073 < 50)<= 93)) {
2074  
2075 < 50)<= 93)) {var onSelect = function(e) {
2076 < 50)<= 93)) {if (copied) {
2077 < 50)<= 93)) {false;
2078 < 50)<= 93)) {else if (isAllSelected(text)) {
2079 < 50)<= 93)) {
2080 < 50)<= 93)) {
2081 < 50)<= 93)) {else if (inputHandler) {
2082 < 50)<= 93)) {
2083 < 50)<= 93)) {
2084 < 50)<= 93)) {
2085  
2086 < 50)<= 93)) {var inputHandler = null;
2087 < 50)<= 93)) {this.setInputHandler = function(cb) {inputHandler = cb};
2088 < 50)<= 93)) {this.getInputHandler = function() {return inputHandler};
2089 < 50)<= 93)) {var afterContextMenu = false;
2090  
2091 < 50)<= 93)) {var sendText = function(data) {
2092 < 50)<= 93)) {if (inputHandler) {
2093 < 50)<= 93)) {
2094 < 50)<= 93)) {null;
2095 < 50)<= 93)) {
2096 < 50)<= 93)) {if (pasted) {
2097 < 50)<= 93)) {
2098 < 50)<= 93)) {if (data)
2099 < 50)<= 93)) {
2100 < 50)<= 93)) {false;
2101 < 50)<= 93)) {else if (data == PLACEHOLDER.charAt(0)) {
2102 < 50)<= 93)) {if (afterContextMenu)
2103 < 50)<= 93)) {"del", {source: "ace"});
2104 < 50)<= 93)) {else // some versions of android do not fire keydown when pressing backspace
2105 < 50)<= 93)) { host.execCommand("backspace", {source: "ace"});
2106 < 50)<= 93)) {else {
2107 < 50)<= 93)) {if (data.substring(0, 2) == PLACEHOLDER)
2108 < 50)<= 93)) {
2109 < 50)<= 93)) {else if (data.charAt(0) == PLACEHOLDER.charAt(0))
2110 < 50)<= 93)) {
2111 < 50)<= 93)) {else if (data.charAt(data.length - 1) == PLACEHOLDER.charAt(0))
2112 < 50)<= 93)) {
2113 < 50)<= 93)) {if (data.charAt(data.length - 1) == PLACEHOLDER.charAt(0))
2114 < 50)<= 93)) {
2115  
2116 < 50)<= 93)) {if (data)
2117 < 50)<= 93)) {
2118 < 50)<= 93)) {
2119 < 50)<= 93)) {if (afterContextMenu)
2120 < 50)<= 93)) {false;
2121 < 50)<= 93)) {
2122 < 50)<= 93)) {var onInput = function(e) {
2123 < 50)<= 93)) {if (inComposition)
2124 < 50)<= 93)) {return;
2125 < 50)<= 93)) {var data = text.value;
2126 < 50)<= 93)) {
2127 < 50)<= 93)) {
2128 < 50)<= 93)) {
2129  
2130 < 50)<= 93)) {var handleClipboardData = function(e, data, forceIEMime) {
2131 < 50)<= 93)) {var clipboardData = e.clipboardData || window.clipboardData;
2132 < 50)<= 93)) {if (!clipboardData || BROKEN_SETDATA)
2133 < 50)<= 93)) {return;
2134 < 50)<= 93)) {var mime = USE_IE_MIME_TYPE || forceIEMime ? "Text" : "text/plain";
2135 < 50)<= 93)) {try {
2136 < 50)<= 93)) {if (data) {
2137 < 50)<= 93)) {return clipboardData.setData(mime, data) !== false;
2138 < 50)<= 93)) {else {
2139 < 50)<= 93)) {return clipboardData.getData(mime);
2140 < 50)<= 93)) {
2141 < 50)<= 93)) {catch(e) {
2142 < 50)<= 93)) {if (!forceIEMime)
2143 < 50)<= 93)) {return handleClipboardData(e, data, true);
2144 < 50)<= 93)) {
2145 < 50)<= 93)) {
2146  
2147 < 50)<= 93)) {var doCopy = function(e, isCut) {
2148 < 50)<= 93)) {var data = host.getCopyText();
2149 < 50)<= 93)) {if (!data)
2150 < 50)<= 93)) {return event.preventDefault(e);
2151  
2152 < 50)<= 93)) {if (handleClipboardData(e, data)) {
2153 < 50)<= 93)) {
2154 < 50)<= 93)) {
2155 < 50)<= 93)) {else {
2156 < 50)<= 93)) {true;
2157 < 50)<= 93)) {
2158 < 50)<= 93)) {
2159 < 50)<= 93)) {function(){
2160 < 50)<= 93)) {false;
2161 < 50)<= 93)) {
2162 < 50)<= 93)) {
2163 < 50)<= 93)) {
2164 < 50)<= 93)) {
2165 < 50)<= 93)) {
2166 < 50)<= 93)) {
2167  
2168 < 50)<= 93)) {var onCut = function(e) {
2169 < 50)<= 93)) {true);
2170 < 50)<= 93)) {
2171  
2172 < 50)<= 93)) {var onCopy = function(e) {
2173 < 50)<= 93)) {false);
2174 < 50)<= 93)) {
2175  
2176 < 50)<= 93)) {var onPaste = function(e) {
2177 < 50)<= 93)) {var data = handleClipboardData(e);
2178 < 50)<= 93)) {if (typeof data == "string") {
2179 < 50)<= 93)) {if (data)
2180 < 50)<= 93)) {
2181 < 50)<= 93)) {if (useragent.isIE)
2182 < 50)<= 93)) {
2183 < 50)<= 93)) {
2184 < 50)<= 93)) {
2185 < 50)<= 93)) {else {
2186 < 50)<= 93)) {"";
2187 < 50)<= 93)) {true;
2188 < 50)<= 93)) {
2189 < 50)<= 93)) {
2190  
2191 < 50)<= 93)) {
2192  
2193 < 50)<= 93)) {"select", onSelect);
2194  
2195 < 50)<= 93)) {"input", onInput);
2196  
2197 < 50)<= 93)) {"cut", onCut);
2198 < 50)<= 93)) {"copy", onCopy);
2199 < 50)<= 93)) {"paste", onPaste);
2200 < 50)<= 93)) {if (!('oncut' in text) || !('oncopy' in text) || !('onpaste' in text)){
2201 < 50)<= 93)) {"keydown", function(e) {
2202 < 50)<= 93)) {if ((useragent.isMac && !e.metaKey) || !e.ctrlKey)
2203 < 50)<= 93)) {return;
2204  
2205 < 50)<= 93)) {switch (e.keyCode) {
2206 < 50)<= 93)) {case 67:
2207 < 50)<= 93)) {
2208 < 50)<= 93)) {break;
2209 < 50)<= 93)) {case 86:
2210 < 50)<= 93)) {
2211 < 50)<= 93)) {break;
2212 < 50)<= 93)) {case 88:
2213 < 50)<= 93)) {
2214 < 50)<= 93)) {break;
2215 < 50)<= 93)) {
2216 < 50)<= 93)) {
2217 < 50)<= 93)) {
2218 < 50)<= 93)) {var onCompositionStart = function(e) {
2219 < 50)<= 93)) {if (inComposition || !host.onCompositionStart || host.$readOnly)
2220 < 50)<= 93)) {return;
2221 < 50)<= 93)) {
2222 < 50)<= 93)) {
2223 < 50)<= 93)) {
2224 < 50)<= 93)) {
2225 < 50)<= 93)) {"mousedown", onCompositionEnd);
2226 < 50)<= 93)) {if (inComposition.canUndo && !host.selection.isEmpty()) {
2227 < 50)<= 93)) {"");
2228 < 50)<= 93)) {
2229 < 50)<= 93)) {
2230 < 50)<= 93)) {
2231 < 50)<= 93)) {
2232 < 50)<= 93)) {
2233  
2234 < 50)<= 93)) {var onCompositionUpdate = function() {
2235 < 50)<= 93)) {if (!inComposition || !host.onCompositionUpdate || host.$readOnly)
2236 < 50)<= 93)) {return;
2237 < 50)<= 93)) {var val = text.value.replace(/\x01/g, "");
2238 < 50)<= 93)) {if (inComposition.lastValue === val) return;
2239  
2240 < 50)<= 93)) {
2241 < 50)<= 93)) {if (inComposition.lastValue)
2242 < 50)<= 93)) {
2243 < 50)<= 93)) {if (inComposition.canUndo)
2244 < 50)<= 93)) {
2245 < 50)<= 93)) {if (inComposition.lastValue) {
2246 < 50)<= 93)) {var r = host.selection.getRange();
2247 < 50)<= 93)) {
2248 < 50)<= 93)) {
2249 < 50)<= 93)) {
2250 < 50)<= 93)) {
2251 < 50)<= 93)) {
2252 < 50)<= 93)) {
2253 < 50)<= 93)) {
2254  
2255 < 50)<= 93)) {var onCompositionEnd = function(e) {
2256 < 50)<= 93)) {if (!host.onCompositionEnd || host.$readOnly) return;
2257 < 50)<= 93)) {var c = inComposition;
2258 < 50)<= 93)) {false;
2259 < 50)<= 93)) {var timer = setTimeout(function() {
2260 < 50)<= 93)) {null;
2261 < 50)<= 93)) {var str = text.value.replace(/\x01/g, "");
2262 < 50)<= 93)) {if (inComposition)
2263 < 50)<= 93)) {return;
2264 < 50)<= 93)) {else if (str == c.lastValue)
2265 < 50)<= 93)) {
2266 < 50)<= 93)) {else if (!c.lastValue && str) {
2267 < 50)<= 93)) {
2268 < 50)<= 93)) {
2269 < 50)<= 93)) {
2270 < 50)<= 93)) {
2271 < 50)<= 93)) {function compositionInputHandler(str) {
2272 < 50)<= 93)) {if (timer)
2273 < 50)<= 93)) {
2274 < 50)<= 93)) {/\x01/g, "");
2275 < 50)<= 93)) {if (str == c.lastValue)
2276 < 50)<= 93)) {return "";
2277 < 50)<= 93)) {if (c.lastValue && timer)
2278 < 50)<= 93)) {
2279 < 50)<= 93)) {return str;
2280 < 50)<= 93)) {
2281 < 50)<= 93)) {
2282 < 50)<= 93)) {"mousedown", onCompositionEnd);
2283 < 50)<= 93)) {if (e.type == "compositionend" && c.range) {
2284 < 50)<= 93)) {
2285 < 50)<= 93)) {
2286 < 50)<= 93)) {if (useragent.isChrome && useragent.isChrome >= 53) {
2287 < 50)<= 93)) {
2288 < 50)<= 93)) {
2289 < 50)<= 93)) {
2290  
2291  
2292  
2293 < 50)<= 93)) {var syncComposition = lang.delayedCall(onCompositionUpdate, 50);
2294  
2295 < 50)<= 93)) {"compositionstart", onCompositionStart);
2296 < 50)<= 93)) {if (useragent.isGecko) {
2297 < 50)<= 93)) {"text", function(){syncComposition.schedule()});
2298 < 50)<= 93)) {else {
2299 < 50)<= 93)) {"keyup", function(){syncComposition.schedule()});
2300 < 50)<= 93)) {"keydown", function(){syncComposition.schedule()});
2301 < 50)<= 93)) {
2302 < 50)<= 93)) {"compositionend", onCompositionEnd);
2303  
2304 < 50)<= 93)) {this.getElement = function() {
2305 < 50)<= 93)) {return text;
2306 < 50)<= 93)) {
2307  
2308 < 50)<= 93)) {this.setReadOnly = function(readOnly) {
2309 < 50)<= 93)) {
2310 < 50)<= 93)) {
2311  
2312 < 50)<= 93)) {this.onContextMenu = function(e) {
2313 < 50)<= 93)) {true;
2314 < 50)<= 93)) {
2315 < 50)<= 93)) {"nativecontextmenu", {target: host, domEvent: e});
2316 < 50)<= 93)) {this.moveToMouse(e, true);
2317 < 50)<= 93)) {
2318  
2319 < 50)<= 93)) {this.moveToMouse = function(e, bringToFront) {
2320 < 50)<= 93)) {if (!bringToFront && useragent.isOldIE)
2321 < 50)<= 93)) {return;
2322 < 50)<= 93)) {if (!tempStyle)
2323 < 50)<= 93)) {
2324 < 50)<= 93)) {"z-index:100000;" : "")
2325 < 50)<= 93)) {"height:" + text.style.height + ";"
2326 < 50)<= 93)) {"opacity:0.1;" : "");
2327  
2328 < 50)<= 93)) {var rect = host.container.getBoundingClientRect();
2329 < 50)<= 93)) {var style = dom.computedStyle(host.container);
2330 < 50)<= 93)) {var top = rect.top + (parseInt(style.borderTopWidth) || 0);
2331 < 50)<= 93)) {var left = rect.left + (parseInt(rect.borderLeftWidth) || 0);
2332 < 50)<= 93)) {var maxTop = rect.bottom - top - text.clientHeight -2;
2333 < 50)<= 93)) {var move = function(e) {
2334 < 50)<= 93)) {"px";
2335 < 50)<= 93)) {Math.min(e.clientY - top - 2, maxTop) + "px";
2336 < 50)<= 93)) {
2337 < 50)<= 93)) {
2338  
2339 < 50)<= 93)) {if (e.type != "mousedown")
2340 < 50)<= 93)) {return;
2341  
2342 < 50)<= 93)) {if (host.renderer.$keepTextAreaAtCursor)
2343 < 50)<= 93)) {null;
2344  
2345 < 50)<= 93)) {
2346 < 50)<= 93)) {if (useragent.isWin && !useragent.isOldIE)
2347 < 50)<= 93)) {
2348 < 50)<= 93)) {
2349  
2350 < 50)<= 93)) {this.onContextMenuClose = onContextMenuClose;
2351 < 50)<= 93)) {var closeTimeout;
2352 < 50)<= 93)) {function onContextMenuClose() {
2353 < 50)<= 93)) {
2354 < 50)<= 93)) {function () {
2355 < 50)<= 93)) {if (tempStyle) {
2356 < 50)<= 93)) {
2357 < 50)<= 93)) {'';
2358 < 50)<= 93)) {
2359 < 50)<= 93)) {if (host.renderer.$keepTextAreaAtCursor == null) {
2360 < 50)<= 93)) {true;
2361 < 50)<= 93)) {
2362 < 50)<= 93)) {
2363 < 50)<= 93)) {
2364 < 50)<= 93)) {
2365  
2366 < 50)<= 93)) {var onContextMenu = function(e) {
2367 < 50)<= 93)) {
2368 < 50)<= 93)) {
2369 < 50)<= 93)) {
2370 < 50)<= 93)) {"mouseup", onContextMenu);
2371 < 50)<= 93)) {"mousedown", function(e) {
2372 < 50)<= 93)) {
2373 < 50)<= 93)) {
2374 < 50)<= 93)) {
2375 < 50)<= 93)) {"contextmenu", onContextMenu);
2376 < 50)<= 93)) {"contextmenu", onContextMenu);
2377 < 50)<= 93)) {
2378  
2379 < 50)<= 93)) {
2380 < 50)<= 93)) {
2381  
2382 < 50)<= 93)) {"ace/mouse/default_handlers",["require","exports","module","ace/lib/dom","ace/lib/event","ace/lib/useragent"], function(require, exports, module) {
2383 < 50)<= 93)) {"use strict";
2384  
2385 < 50)<= 93)) {var dom = require("../lib/dom");
2386 < 50)<= 93)) {var event = require("../lib/event");
2387 < 50)<= 93)) {var useragent = require("../lib/useragent");
2388  
2389 < 50)<= 93)) {var DRAG_OFFSET = 0; // pixels
2390  
2391 < 50)<= 93)) {function DefaultHandlers(mouseHandler) {
2392 < 50)<= 93)) {null;
2393  
2394 < 50)<= 93)) {var editor = mouseHandler.editor;
2395 < 50)<= 93)) {"mousedown", this.onMouseDown.bind(mouseHandler));
2396 < 50)<= 93)) {"dblclick", this.onDoubleClick.bind(mouseHandler));
2397 < 50)<= 93)) {"tripleclick", this.onTripleClick.bind(mouseHandler));
2398 < 50)<= 93)) {"quadclick", this.onQuadClick.bind(mouseHandler));
2399 < 50)<= 93)) {"mousewheel", this.onMouseWheel.bind(mouseHandler));
2400 < 50)<= 93)) {"touchmove", this.onTouchMove.bind(mouseHandler));
2401  
2402 < 50)<= 93)) {var exports = ["select", "startSelect", "selectEnd", "selectAllEnd", "selectByWordsEnd",
2403 < 50)<= 93)) {"selectByLinesEnd", "dragWait", "dragWaitEnd", "focusWait"];
2404  
2405 < 50)<= 93)) {function(x) {
2406 < 50)<= 93)) {this[x];
2407 < 50)<= 93)) {this);
2408  
2409 < 50)<= 93)) {this.extendSelectionBy.bind(mouseHandler, "getLineRange");
2410 < 50)<= 93)) {this.extendSelectionBy.bind(mouseHandler, "getWordRange");
2411 < 50)<= 93)) {
2412  
2413 < 50)<= 93)) {function() {
2414  
2415 < 50)<= 93)) {this.onMouseDown = function(ev) {
2416 < 50)<= 93)) {var inSelection = ev.inSelection();
2417 < 50)<= 93)) {var pos = ev.getDocumentPosition();
2418 < 50)<= 93)) {this.mousedownEvent = ev;
2419 < 50)<= 93)) {var editor = this.editor;
2420  
2421 < 50)<= 93)) {var button = ev.getButton();
2422 < 50)<= 93)) {if (button !== 0) {
2423 < 50)<= 93)) {var selectionRange = editor.getSelectionRange();
2424 < 50)<= 93)) {var selectionEmpty = selectionRange.isEmpty();
2425 < 50)<= 93)) {
2426 < 50)<= 93)) {if (selectionEmpty || button == 1)
2427 < 50)<= 93)) {
2428 < 50)<= 93)) {
2429 < 50)<= 93)) {if (button == 2)
2430 < 50)<= 93)) {
2431 < 50)<= 93)) {return; // stopping event here breaks contextmenu on ff mac
2432 < 50)<= 93)) { }
2433  
2434 < 50)<= 93)) {this.mousedownEvent.time = Date.now();
2435 < 50)<= 93)) {if (inSelection && !editor.isFocused()) {
2436 < 50)<= 93)) {
2437 < 50)<= 93)) {if (this.$focusTimout && !this.$clickSelection && !editor.inMultiSelectMode) {
2438 < 50)<= 93)) {this.setState("focusWait");
2439 < 50)<= 93)) {this.captureMouse(ev);
2440 < 50)<= 93)) {return;
2441 < 50)<= 93)) {
2442 < 50)<= 93)) {
2443  
2444 < 50)<= 93)) {this.captureMouse(ev);
2445 < 50)<= 93)) {this.startSelect(pos, ev.domEvent._clicks > 1);
2446 < 50)<= 93)) {return ev.preventDefault();
2447 < 50)<= 93)) {
2448  
2449 < 50)<= 93)) {this.startSelect = function(pos, waitForClickSelection) {
2450 < 50)<= 93)) {this.editor.renderer.screenToTextCoordinates(this.x, this.y);
2451 < 50)<= 93)) {var editor = this.editor;
2452 < 50)<= 93)) {
2453 < 50)<= 93)) {if (this.mousedownEvent.getShiftKey())
2454 < 50)<= 93)) {
2455 < 50)<= 93)) {else if (!waitForClickSelection)
2456 < 50)<= 93)) {
2457 < 50)<= 93)) {if (!waitForClickSelection)
2458 < 50)<= 93)) {this.select();
2459 < 50)<= 93)) {if (editor.renderer.scroller.setCapture) {
2460 < 50)<= 93)) {
2461 < 50)<= 93)) {
2462 < 50)<= 93)) {"ace_selecting");
2463 < 50)<= 93)) {this.setState("select");
2464 < 50)<= 93)) {
2465 < 50)<= 93)) {
2466  
2467 < 50)<= 93)) {this.select = function() {
2468 < 50)<= 93)) {var anchor, editor = this.editor;
2469 < 50)<= 93)) {var cursor = editor.renderer.screenToTextCoordinates(this.x, this.y);
2470 < 50)<= 93)) {
2471 < 50)<= 93)) {if (this.$clickSelection) {
2472 < 50)<= 93)) {var cmp = this.$clickSelection.comparePoint(cursor);
2473  
2474 < 50)<= 93)) {if (cmp == -1) {
2475 < 50)<= 93)) {this.$clickSelection.end;
2476 < 50)<= 93)) {else if (cmp == 1) {
2477 < 50)<= 93)) {this.$clickSelection.start;
2478 < 50)<= 93)) {else {
2479 < 50)<= 93)) {var orientedRange = calcRangeOrientation(this.$clickSelection, cursor);
2480 < 50)<= 93)) {
2481 < 50)<= 93)) {
2482 < 50)<= 93)) {
2483 < 50)<= 93)) {
2484 < 50)<= 93)) {
2485 < 50)<= 93)) {
2486 < 50)<= 93)) {
2487 < 50)<= 93)) {
2488 < 50)<= 93)) {
2489  
2490 < 50)<= 93)) {this.extendSelectionBy = function(unitName) {
2491 < 50)<= 93)) {var anchor, editor = this.editor;
2492 < 50)<= 93)) {var cursor = editor.renderer.screenToTextCoordinates(this.x, this.y);
2493 < 50)<= 93)) {var range = editor.selection[unitName](cursor.row, cursor.column);
2494 < 50)<= 93)) {
2495 < 50)<= 93)) {if (this.$clickSelection) {
2496 < 50)<= 93)) {var cmpStart = this.$clickSelection.comparePoint(range.start);
2497 < 50)<= 93)) {var cmpEnd = this.$clickSelection.comparePoint(range.end);
2498  
2499 < 50)<= 93)) {if (cmpStart == -1 && cmpEnd <= 0) {
2500 < 50)<= 93)) {this.$clickSelection.end;
2501 < 50)<= 93)) {if (range.end.row != cursor.row || range.end.column != cursor.column)
2502 < 50)<= 93)) {
2503 < 50)<= 93)) {else if (cmpEnd == 1 && cmpStart >= 0) {
2504 < 50)<= 93)) {this.$clickSelection.start;
2505 < 50)<= 93)) {if (range.start.row != cursor.row || range.start.column != cursor.column)
2506 < 50)<= 93)) {
2507 < 50)<= 93)) {else if (cmpStart == -1 && cmpEnd == 1) {
2508 < 50)<= 93)) {
2509 < 50)<= 93)) {
2510 < 50)<= 93)) {else {
2511 < 50)<= 93)) {var orientedRange = calcRangeOrientation(this.$clickSelection, cursor);
2512 < 50)<= 93)) {
2513 < 50)<= 93)) {
2514 < 50)<= 93)) {
2515 < 50)<= 93)) {
2516 < 50)<= 93)) {
2517 < 50)<= 93)) {
2518 < 50)<= 93)) {
2519 < 50)<= 93)) {
2520 < 50)<= 93)) {
2521  
2522 < 50)<= 93)) {this.selectEnd =
2523 < 50)<= 93)) {this.selectAllEnd =
2524 < 50)<= 93)) {this.selectByWordsEnd =
2525 < 50)<= 93)) {this.selectByLinesEnd = function() {
2526 < 50)<= 93)) {this.$clickSelection = null;
2527 < 50)<= 93)) {this.editor.unsetStyle("ace_selecting");
2528 < 50)<= 93)) {if (this.editor.renderer.scroller.releaseCapture) {
2529 < 50)<= 93)) {this.editor.renderer.scroller.releaseCapture();
2530 < 50)<= 93)) {
2531 < 50)<= 93)) {
2532  
2533 < 50)<= 93)) {this.focusWait = function() {
2534 < 50)<= 93)) {var distance = calcDistance(this.mousedownEvent.x, this.mousedownEvent.y, this.x, this.y);
2535 < 50)<= 93)) {var time = Date.now();
2536  
2537 < 50)<= 93)) {if (distance > DRAG_OFFSET || time - this.mousedownEvent.time > this.$focusTimout)
2538 < 50)<= 93)) {this.startSelect(this.mousedownEvent.getDocumentPosition());
2539 < 50)<= 93)) {
2540  
2541 < 50)<= 93)) {this.onDoubleClick = function(ev) {
2542 < 50)<= 93)) {var pos = ev.getDocumentPosition();
2543 < 50)<= 93)) {var editor = this.editor;
2544 < 50)<= 93)) {var session = editor.session;
2545  
2546 < 50)<= 93)) {var range = session.getBracketRange(pos);
2547 < 50)<= 93)) {if (range) {
2548 < 50)<= 93)) {if (range.isEmpty()) {
2549 < 50)<= 93)) {
2550 < 50)<= 93)) {
2551 < 50)<= 93)) {
2552 < 50)<= 93)) {this.setState("select");
2553 < 50)<= 93)) {else {
2554 < 50)<= 93)) {
2555 < 50)<= 93)) {this.setState("selectByWords");
2556 < 50)<= 93)) {
2557 < 50)<= 93)) {this.$clickSelection = range;
2558 < 50)<= 93)) {this.select();
2559 < 50)<= 93)) {
2560  
2561 < 50)<= 93)) {this.onTripleClick = function(ev) {
2562 < 50)<= 93)) {var pos = ev.getDocumentPosition();
2563 < 50)<= 93)) {var editor = this.editor;
2564  
2565 < 50)<= 93)) {this.setState("selectByLines");
2566 < 50)<= 93)) {var range = editor.getSelectionRange();
2567 < 50)<= 93)) {if (range.isMultiLine() && range.contains(pos.row, pos.column)) {
2568 < 50)<= 93)) {this.$clickSelection = editor.selection.getLineRange(range.start.row);
2569 < 50)<= 93)) {this.$clickSelection.end = editor.selection.getLineRange(range.end.row).end;
2570 < 50)<= 93)) {else {
2571 < 50)<= 93)) {this.$clickSelection = editor.selection.getLineRange(pos.row);
2572 < 50)<= 93)) {
2573 < 50)<= 93)) {this.select();
2574 < 50)<= 93)) {
2575  
2576 < 50)<= 93)) {this.onQuadClick = function(ev) {
2577 < 50)<= 93)) {var editor = this.editor;
2578  
2579 < 50)<= 93)) {
2580 < 50)<= 93)) {this.$clickSelection = editor.getSelectionRange();
2581 < 50)<= 93)) {this.setState("selectAll");
2582 < 50)<= 93)) {
2583  
2584 < 50)<= 93)) {this.onMouseWheel = function(ev) {
2585 < 50)<= 93)) {if (ev.getAccelKey())
2586 < 50)<= 93)) {return;
2587 < 50)<= 93)) {if (ev.getShiftKey() && ev.wheelY && !ev.wheelX) {
2588 < 50)<= 93)) {
2589 < 50)<= 93)) {
2590 < 50)<= 93)) {
2591  
2592 < 50)<= 93)) {var t = ev.domEvent.timeStamp;
2593 < 50)<= 93)) {var dt = t - (this.$lastScrollTime||0);
2594  
2595 < 50)<= 93)) {var editor = this.editor;
2596 < 50)<= 93)) {var isScrolable = editor.renderer.isScrollableBy(ev.wheelX * ev.speed, ev.wheelY * ev.speed);
2597 < 50)<= 93)) {if (isScrolable || dt < 200) {
2598 < 50)<= 93)) {this.$lastScrollTime = t;
2599 < 50)<= 93)) {
2600 < 50)<= 93)) {return ev.stop();
2601 < 50)<= 93)) {
2602 < 50)<= 93)) {
2603  
2604 < 50)<= 93)) {this.onTouchMove = function (ev) {
2605 < 50)<= 93)) {var t = ev.domEvent.timeStamp;
2606 < 50)<= 93)) {var dt = t - (this.$lastScrollTime || 0);
2607  
2608 < 50)<= 93)) {var editor = this.editor;
2609 < 50)<= 93)) {var isScrolable = editor.renderer.isScrollableBy(ev.wheelX * ev.speed, ev.wheelY * ev.speed);
2610 < 50)<= 93)) {if (isScrolable || dt < 200) {
2611 < 50)<= 93)) {this.$lastScrollTime = t;
2612 < 50)<= 93)) {
2613 < 50)<= 93)) {return ev.stop();
2614 < 50)<= 93)) {
2615 < 50)<= 93)) {
2616  
2617 < 50)<= 93)) {
2618  
2619 < 50)<= 93)) {
2620  
2621 < 50)<= 93)) {function calcDistance(ax, ay, bx, by) {
2622 < 50)<= 93)) {return Math.sqrt(Math.pow(bx - ax, 2) + Math.pow(by - ay, 2));
2623 < 50)<= 93)) {
2624  
2625 < 50)<= 93)) {function calcRangeOrientation(range, cursor) {
2626 < 50)<= 93)) {if (range.start.row == range.end.row)
2627 < 50)<= 93)) {var cmp = 2 * cursor.column - range.start.column - range.end.column;
2628 < 50)<= 93)) {else if (range.start.row == range.end.row - 1 && !range.start.column && !range.end.column)
2629 < 50)<= 93)) {var cmp = cursor.column - 4;
2630 < 50)<= 93)) {else
2631 < 50)<= 93)) {var cmp = 2 * cursor.row - range.start.row - range.end.row;
2632  
2633 < 50)<= 93)) {if (cmp < 0)
2634 < 50)<= 93)) {return {cursor: range.start, anchor: range.end};
2635 < 50)<= 93)) {else
2636 < 50)<= 93)) {return {cursor: range.end, anchor: range.start};
2637 < 50)<= 93)) {
2638  
2639 < 50)<= 93)) {
2640  
2641 < 50)<= 93)) {"ace/tooltip",["require","exports","module","ace/lib/oop","ace/lib/dom"], function(require, exports, module) {
2642 < 50)<= 93)) {"use strict";
2643  
2644 < 50)<= 93)) {var oop = require("./lib/oop");
2645 < 50)<= 93)) {var dom = require("./lib/dom");
2646 < 50)<= 93)) {function Tooltip (parentNode) {
2647 < 50)<= 93)) {this.isOpen = false;
2648 < 50)<= 93)) {this.$element = null;
2649 < 50)<= 93)) {this.$parentNode = parentNode;
2650 < 50)<= 93)) {
2651  
2652 < 50)<= 93)) {function() {
2653 < 50)<= 93)) {this.$init = function() {
2654 < 50)<= 93)) {this.$element = dom.createElement("div");
2655 < 50)<= 93)) {this.$element.className = "ace_tooltip";
2656 < 50)<= 93)) {this.$element.style.display = "none";
2657 < 50)<= 93)) {this.$parentNode.appendChild(this.$element);
2658 < 50)<= 93)) {return this.$element;
2659 < 50)<= 93)) {
2660 < 50)<= 93)) {this.getElement = function() {
2661 < 50)<= 93)) {return this.$element || this.$init();
2662 < 50)<= 93)) {
2663 < 50)<= 93)) {this.setText = function(text) {
2664 < 50)<= 93)) {this.getElement(), text);
2665 < 50)<= 93)) {
2666 < 50)<= 93)) {this.setHtml = function(html) {
2667 < 50)<= 93)) {this.getElement().innerHTML = html;
2668 < 50)<= 93)) {
2669 < 50)<= 93)) {this.setPosition = function(x, y) {
2670 < 50)<= 93)) {this.getElement().style.left = x + "px";
2671 < 50)<= 93)) {this.getElement().style.top = y + "px";
2672 < 50)<= 93)) {
2673 < 50)<= 93)) {this.setClassName = function(className) {
2674 < 50)<= 93)) {this.getElement(), className);
2675 < 50)<= 93)) {
2676 < 50)<= 93)) {this.show = function(text, x, y) {
2677 < 50)<= 93)) {if (text != null)
2678 < 50)<= 93)) {this.setText(text);
2679 < 50)<= 93)) {if (x != null && y != null)
2680 < 50)<= 93)) {this.setPosition(x, y);
2681 < 50)<= 93)) {if (!this.isOpen) {
2682 < 50)<= 93)) {this.getElement().style.display = "block";
2683 < 50)<= 93)) {this.isOpen = true;
2684 < 50)<= 93)) {
2685 < 50)<= 93)) {
2686  
2687 < 50)<= 93)) {this.hide = function() {
2688 < 50)<= 93)) {if (this.isOpen) {
2689 < 50)<= 93)) {this.getElement().style.display = "none";
2690 < 50)<= 93)) {this.isOpen = false;
2691 < 50)<= 93)) {
2692 < 50)<= 93)) {
2693 < 50)<= 93)) {this.getHeight = function() {
2694 < 50)<= 93)) {return this.getElement().offsetHeight;
2695 < 50)<= 93)) {
2696 < 50)<= 93)) {this.getWidth = function() {
2697 < 50)<= 93)) {return this.getElement().offsetWidth;
2698 < 50)<= 93)) {
2699  
2700 < 50)<= 93)) {
2701  
2702 < 50)<= 93)) {
2703 < 50)<= 93)) {
2704  
2705 < 50)<= 93)) {"ace/mouse/default_gutter_handler",["require","exports","module","ace/lib/dom","ace/lib/oop","ace/lib/event","ace/tooltip"], function(require, exports, module) {
2706 < 50)<= 93)) {"use strict";
2707 < 50)<= 93)) {var dom = require("../lib/dom");
2708 < 50)<= 93)) {var oop = require("../lib/oop");
2709 < 50)<= 93)) {var event = require("../lib/event");
2710 < 50)<= 93)) {var Tooltip = require("../tooltip").Tooltip;
2711  
2712 < 50)<= 93)) {function GutterHandler(mouseHandler) {
2713 < 50)<= 93)) {var editor = mouseHandler.editor;
2714 < 50)<= 93)) {var gutter = editor.renderer.$gutterLayer;
2715 < 50)<= 93)) {var tooltip = new GutterTooltip(editor.container);
2716  
2717 < 50)<= 93)) {"guttermousedown", function(e) {
2718 < 50)<= 93)) {if (!editor.isFocused() || e.getButton() != 0)
2719 < 50)<= 93)) {return;
2720 < 50)<= 93)) {var gutterRegion = gutter.getRegion(e);
2721  
2722 < 50)<= 93)) {if (gutterRegion == "foldWidgets")
2723 < 50)<= 93)) {return;
2724  
2725 < 50)<= 93)) {var row = e.getDocumentPosition().row;
2726 < 50)<= 93)) {var selection = editor.session.selection;
2727  
2728 < 50)<= 93)) {if (e.getShiftKey())
2729 < 50)<= 93)) {
2730 < 50)<= 93)) {else {
2731 < 50)<= 93)) {if (e.domEvent.detail == 2) {
2732 < 50)<= 93)) {
2733 < 50)<= 93)) {return e.preventDefault();
2734 < 50)<= 93)) {
2735 < 50)<= 93)) {
2736 < 50)<= 93)) {
2737 < 50)<= 93)) {"selectByLines");
2738 < 50)<= 93)) {
2739 < 50)<= 93)) {return e.preventDefault();
2740 < 50)<= 93)) {
2741  
2742  
2743 < 50)<= 93)) {var tooltipTimeout, mouseEvent, tooltipAnnotation;
2744  
2745 < 50)<= 93)) {function showTooltip() {
2746 < 50)<= 93)) {var row = mouseEvent.getDocumentPosition().row;
2747 < 50)<= 93)) {var annotation = gutter.$annotations[row];
2748 < 50)<= 93)) {if (!annotation)
2749 < 50)<= 93)) {return hideTooltip();
2750  
2751 < 50)<= 93)) {var maxRow = editor.session.getLength();
2752 < 50)<= 93)) {if (row == maxRow) {
2753 < 50)<= 93)) {var screenRow = editor.renderer.pixelToScreenCoordinates(0, mouseEvent.y).row;
2754 < 50)<= 93)) {var pos = mouseEvent.$pos;
2755 < 50)<= 93)) {if (screenRow > editor.session.documentToScreenRow(pos.row, pos.column))
2756 < 50)<= 93)) {return hideTooltip();
2757 < 50)<= 93)) {
2758  
2759 < 50)<= 93)) {if (tooltipAnnotation == annotation)
2760 < 50)<= 93)) {return;
2761 < 50)<= 93)) {"<br/>");
2762  
2763 < 50)<= 93)) {
2764 < 50)<= 93)) {
2765 < 50)<= 93)) {"showGutterTooltip", tooltip);
2766 < 50)<= 93)) {"mousewheel", hideTooltip);
2767  
2768 < 50)<= 93)) {if (mouseHandler.$tooltipFollowsMouse) {
2769 < 50)<= 93)) {
2770 < 50)<= 93)) {else {
2771 < 50)<= 93)) {var gutterElement = mouseEvent.domEvent.target;
2772 < 50)<= 93)) {var rect = gutterElement.getBoundingClientRect();
2773 < 50)<= 93)) {var style = tooltip.getElement().style;
2774 < 50)<= 93)) {"px";
2775 < 50)<= 93)) {"px";
2776 < 50)<= 93)) {
2777 < 50)<= 93)) {
2778  
2779 < 50)<= 93)) {function hideTooltip() {
2780 < 50)<= 93)) {if (tooltipTimeout)
2781 < 50)<= 93)) {
2782 < 50)<= 93)) {if (tooltipAnnotation) {
2783 < 50)<= 93)) {
2784 < 50)<= 93)) {null;
2785 < 50)<= 93)) {"hideGutterTooltip", tooltip);
2786 < 50)<= 93)) {"mousewheel", hideTooltip);
2787 < 50)<= 93)) {
2788 < 50)<= 93)) {
2789  
2790 < 50)<= 93)) {function moveTooltip(e) {
2791 < 50)<= 93)) {
2792 < 50)<= 93)) {
2793  
2794 < 50)<= 93)) {"guttermousemove", function(e) {
2795 < 50)<= 93)) {var target = e.domEvent.target || e.domEvent.srcElement;
2796 < 50)<= 93)) {if (dom.hasCssClass(target, "ace_fold-widget"))
2797 < 50)<= 93)) {return hideTooltip();
2798  
2799 < 50)<= 93)) {if (tooltipAnnotation && mouseHandler.$tooltipFollowsMouse)
2800 < 50)<= 93)) {
2801  
2802 < 50)<= 93)) {
2803 < 50)<= 93)) {if (tooltipTimeout)
2804 < 50)<= 93)) {return;
2805 < 50)<= 93)) {function() {
2806 < 50)<= 93)) {null;
2807 < 50)<= 93)) {if (mouseEvent && !mouseHandler.isMousePressed)
2808 < 50)<= 93)) {
2809 < 50)<= 93)) {else
2810 < 50)<= 93)) {
2811 < 50)<= 93)) {
2812 < 50)<= 93)) {
2813  
2814 < 50)<= 93)) {"mouseout", function(e) {
2815 < 50)<= 93)) {null;
2816 < 50)<= 93)) {if (!tooltipAnnotation || tooltipTimeout)
2817 < 50)<= 93)) {return;
2818  
2819 < 50)<= 93)) {function() {
2820 < 50)<= 93)) {null;
2821 < 50)<= 93)) {
2822 < 50)<= 93)) {
2823 < 50)<= 93)) {
2824  
2825 < 50)<= 93)) {"changeSession", hideTooltip);
2826 < 50)<= 93)) {
2827  
2828 < 50)<= 93)) {function GutterTooltip(parentNode) {
2829 < 50)<= 93)) {this, parentNode);
2830 < 50)<= 93)) {
2831  
2832 < 50)<= 93)) {
2833  
2834 < 50)<= 93)) {function(){
2835 < 50)<= 93)) {this.setPosition = function(x, y) {
2836 < 50)<= 93)) {var windowWidth = window.innerWidth || document.documentElement.clientWidth;
2837 < 50)<= 93)) {var windowHeight = window.innerHeight || document.documentElement.clientHeight;
2838 < 50)<= 93)) {var width = this.getWidth();
2839 < 50)<= 93)) {var height = this.getHeight();
2840 < 50)<= 93)) {
2841 < 50)<= 93)) {
2842 < 50)<= 93)) {if (x + width > windowWidth) {
2843 < 50)<= 93)) {
2844 < 50)<= 93)) {
2845 < 50)<= 93)) {if (y + height > windowHeight) {
2846 < 50)<= 93)) {
2847 < 50)<= 93)) {
2848 < 50)<= 93)) {this, x, y);
2849 < 50)<= 93)) {
2850  
2851 < 50)<= 93)) {
2852  
2853  
2854  
2855 < 50)<= 93)) {
2856  
2857 < 50)<= 93)) {
2858  
2859 < 50)<= 93)) {"ace/mouse/mouse_event",["require","exports","module","ace/lib/event","ace/lib/useragent"], function(require, exports, module) {
2860 < 50)<= 93)) {"use strict";
2861  
2862 < 50)<= 93)) {var event = require("../lib/event");
2863 < 50)<= 93)) {var useragent = require("../lib/useragent");
2864 < 50)<= 93)) {var MouseEvent = exports.MouseEvent = function(domEvent, editor) {
2865 < 50)<= 93)) {this.domEvent = domEvent;
2866 < 50)<= 93)) {this.editor = editor;
2867  
2868 < 50)<= 93)) {this.x = this.clientX = domEvent.clientX;
2869 < 50)<= 93)) {this.y = this.clientY = domEvent.clientY;
2870  
2871 < 50)<= 93)) {this.$pos = null;
2872 < 50)<= 93)) {this.$inSelection = null;
2873  
2874 < 50)<= 93)) {this.propagationStopped = false;
2875 < 50)<= 93)) {this.defaultPrevented = false;
2876 < 50)<= 93)) {
2877  
2878 < 50)<= 93)) {function() {
2879  
2880 < 50)<= 93)) {this.stopPropagation = function() {
2881 < 50)<= 93)) {this.domEvent);
2882 < 50)<= 93)) {this.propagationStopped = true;
2883 < 50)<= 93)) {
2884  
2885 < 50)<= 93)) {this.preventDefault = function() {
2886 < 50)<= 93)) {this.domEvent);
2887 < 50)<= 93)) {this.defaultPrevented = true;
2888 < 50)<= 93)) {
2889  
2890 < 50)<= 93)) {this.stop = function() {
2891 < 50)<= 93)) {this.stopPropagation();
2892 < 50)<= 93)) {this.preventDefault();
2893 < 50)<= 93)) {
2894 < 50)<= 93)) {this.getDocumentPosition = function() {
2895 < 50)<= 93)) {if (this.$pos)
2896 < 50)<= 93)) {return this.$pos;
2897  
2898 < 50)<= 93)) {this.$pos = this.editor.renderer.screenToTextCoordinates(this.clientX, this.clientY);
2899 < 50)<= 93)) {return this.$pos;
2900 < 50)<= 93)) {
2901 < 50)<= 93)) {this.inSelection = function() {
2902 < 50)<= 93)) {if (this.$inSelection !== null)
2903 < 50)<= 93)) {return this.$inSelection;
2904  
2905 < 50)<= 93)) {var editor = this.editor;
2906  
2907  
2908 < 50)<= 93)) {var selectionRange = editor.getSelectionRange();
2909 < 50)<= 93)) {if (selectionRange.isEmpty())
2910 < 50)<= 93)) {this.$inSelection = false;
2911 < 50)<= 93)) {else {
2912 < 50)<= 93)) {var pos = this.getDocumentPosition();
2913 < 50)<= 93)) {this.$inSelection = selectionRange.contains(pos.row, pos.column);
2914 < 50)<= 93)) {
2915  
2916 < 50)<= 93)) {return this.$inSelection;
2917 < 50)<= 93)) {
2918 < 50)<= 93)) {this.getButton = function() {
2919 < 50)<= 93)) {return event.getButton(this.domEvent);
2920 < 50)<= 93)) {
2921 < 50)<= 93)) {this.getShiftKey = function() {
2922 < 50)<= 93)) {return this.domEvent.shiftKey;
2923 < 50)<= 93)) {
2924  
2925 < 50)<= 93)) {this.getAccelKey = useragent.isMac
2926 < 50)<= 93)) {function() { return this.domEvent.metaKey; }
2927 < 50)<= 93)) {function() { return this.domEvent.ctrlKey; };
2928  
2929 < 50)<= 93)) {
2930  
2931 < 50)<= 93)) {
2932  
2933 < 50)<= 93)) {"ace/mouse/dragdrop_handler",["require","exports","module","ace/lib/dom","ace/lib/event","ace/lib/useragent"], function(require, exports, module) {
2934 < 50)<= 93)) {"use strict";
2935  
2936 < 50)<= 93)) {var dom = require("../lib/dom");
2937 < 50)<= 93)) {var event = require("../lib/event");
2938 < 50)<= 93)) {var useragent = require("../lib/useragent");
2939  
2940 < 50)<= 93)) {var AUTOSCROLL_DELAY = 200;
2941 < 50)<= 93)) {var SCROLL_CURSOR_DELAY = 200;
2942 < 50)<= 93)) {var SCROLL_CURSOR_HYSTERESIS = 5;
2943  
2944 < 50)<= 93)) {function DragdropHandler(mouseHandler) {
2945  
2946 < 50)<= 93)) {var editor = mouseHandler.editor;
2947  
2948 < 50)<= 93)) {var blankImage = dom.createElement("img");
2949 < 50)<= 93)) {"data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==";
2950 < 50)<= 93)) {if (useragent.isOpera)
2951 < 50)<= 93)) {"width:1px;height:1px;position:fixed;top:0;left:0;z-index:2147483647;opacity:0;";
2952  
2953 < 50)<= 93)) {var exports = ["dragWait", "dragWaitEnd", "startDrag", "dragReadyEnd", "onMouseDrag"];
2954  
2955 < 50)<= 93)) {function(x) {
2956 < 50)<= 93)) {this[x];
2957 < 50)<= 93)) {this);
2958 < 50)<= 93)) {"mousedown", this.onMouseDown.bind(mouseHandler));
2959  
2960  
2961 < 50)<= 93)) {var mouseTarget = editor.container;
2962 < 50)<= 93)) {var dragSelectionMarker, x, y;
2963 < 50)<= 93)) {var timerId, range;
2964 < 50)<= 93)) {var dragCursor, counter = 0;
2965 < 50)<= 93)) {var dragOperation;
2966 < 50)<= 93)) {var isInternal;
2967 < 50)<= 93)) {var autoScrollStartTime;
2968 < 50)<= 93)) {var cursorMovedTime;
2969 < 50)<= 93)) {var cursorPointOnCaretMoved;
2970  
2971 < 50)<= 93)) {this.onDragStart = function(e) {
2972 < 50)<= 93)) {if (this.cancelDrag || !mouseTarget.draggable) {
2973 < 50)<= 93)) {var self = this;
2974 < 50)<= 93)) {function(){
2975 < 50)<= 93)) {
2976 < 50)<= 93)) {
2977 < 50)<= 93)) {
2978 < 50)<= 93)) {return e.preventDefault();
2979 < 50)<= 93)) {
2980 < 50)<= 93)) {
2981  
2982 < 50)<= 93)) {var dataTransfer = e.dataTransfer;
2983 < 50)<= 93)) {"copy" : "copyMove";
2984 < 50)<= 93)) {if (useragent.isOpera) {
2985 < 50)<= 93)) {
2986 < 50)<= 93)) {
2987 < 50)<= 93)) {
2988 < 50)<= 93)) {
2989 < 50)<= 93)) {if (useragent.isOpera) {
2990 < 50)<= 93)) {
2991 < 50)<= 93)) {
2992 < 50)<= 93)) {
2993 < 50)<= 93)) {"Text", editor.session.getTextRange());
2994  
2995 < 50)<= 93)) {true;
2996 < 50)<= 93)) {this.setState("drag");
2997 < 50)<= 93)) {
2998  
2999 < 50)<= 93)) {this.onDragEnd = function(e) {
3000 < 50)<= 93)) {false;
3001 < 50)<= 93)) {false;
3002 < 50)<= 93)) {this.setState(null);
3003 < 50)<= 93)) {if (!editor.getReadOnly()) {
3004 < 50)<= 93)) {var dropEffect = e.dataTransfer.dropEffect;
3005 < 50)<= 93)) {if (!dragOperation && dropEffect == "move")
3006 < 50)<= 93)) {
3007 < 50)<= 93)) {true);
3008 < 50)<= 93)) {
3009 < 50)<= 93)) {this.editor.unsetStyle("ace_dragging");
3010 < 50)<= 93)) {this.editor.renderer.setCursorStyle("");
3011 < 50)<= 93)) {
3012  
3013 < 50)<= 93)) {this.onDragEnter = function(e) {
3014 < 50)<= 93)) {if (editor.getReadOnly() || !canAccept(e.dataTransfer))
3015 < 50)<= 93)) {return;
3016 < 50)<= 93)) {
3017 < 50)<= 93)) {
3018 < 50)<= 93)) {if (!dragSelectionMarker)
3019 < 50)<= 93)) {
3020 < 50)<= 93)) {
3021 < 50)<= 93)) {
3022 < 50)<= 93)) {return event.preventDefault(e);
3023 < 50)<= 93)) {
3024  
3025 < 50)<= 93)) {this.onDragOver = function(e) {
3026 < 50)<= 93)) {if (editor.getReadOnly() || !canAccept(e.dataTransfer))
3027 < 50)<= 93)) {return;
3028 < 50)<= 93)) {
3029 < 50)<= 93)) {
3030 < 50)<= 93)) {if (!dragSelectionMarker) {
3031 < 50)<= 93)) {
3032 < 50)<= 93)) {
3033 < 50)<= 93)) {
3034 < 50)<= 93)) {if (onMouseMoveTimer !== null)
3035 < 50)<= 93)) {null;
3036  
3037 < 50)<= 93)) {
3038 < 50)<= 93)) {return event.preventDefault(e);
3039 < 50)<= 93)) {
3040  
3041 < 50)<= 93)) {this.onDragLeave = function(e) {
3042 < 50)<= 93)) {
3043 < 50)<= 93)) {if (counter <= 0 && dragSelectionMarker) {
3044 < 50)<= 93)) {
3045 < 50)<= 93)) {null;
3046 < 50)<= 93)) {return event.preventDefault(e);
3047 < 50)<= 93)) {
3048 < 50)<= 93)) {
3049  
3050 < 50)<= 93)) {this.onDrop = function(e) {
3051 < 50)<= 93)) {if (!dragCursor)
3052 < 50)<= 93)) {return;
3053 < 50)<= 93)) {var dataTransfer = e.dataTransfer;
3054 < 50)<= 93)) {if (isInternal) {
3055 < 50)<= 93)) {switch (dragOperation) {
3056 < 50)<= 93)) {case "move":
3057 < 50)<= 93)) {if (range.contains(dragCursor.row, dragCursor.column)) {
3058 < 50)<= 93)) {
3059 < 50)<= 93)) {
3060 < 50)<= 93)) {
3061 < 50)<= 93)) {
3062 < 50)<= 93)) {else {
3063 < 50)<= 93)) {
3064 < 50)<= 93)) {
3065 < 50)<= 93)) {break;
3066 < 50)<= 93)) {case "copy":
3067 < 50)<= 93)) {true);
3068 < 50)<= 93)) {break;
3069 < 50)<= 93)) {
3070 < 50)<= 93)) {else {
3071 < 50)<= 93)) {var dropData = dataTransfer.getData('Text');
3072 < 50)<= 93)) {
3073 < 50)<= 93)) {
3074 < 50)<= 93)) {
3075 < 50)<= 93)) {
3076 < 50)<= 93)) {
3077 < 50)<= 93)) {null;
3078 < 50)<= 93)) {
3079 < 50)<= 93)) {
3080 < 50)<= 93)) {return event.preventDefault(e);
3081 < 50)<= 93)) {
3082  
3083 < 50)<= 93)) {"dragstart", this.onDragStart.bind(mouseHandler));
3084 < 50)<= 93)) {"dragend", this.onDragEnd.bind(mouseHandler));
3085 < 50)<= 93)) {"dragenter", this.onDragEnter.bind(mouseHandler));
3086 < 50)<= 93)) {"dragover", this.onDragOver.bind(mouseHandler));
3087 < 50)<= 93)) {"dragleave", this.onDragLeave.bind(mouseHandler));
3088 < 50)<= 93)) {"drop", this.onDrop.bind(mouseHandler));
3089  
3090 < 50)<= 93)) {function scrollCursorIntoView(cursor, prevCursor) {
3091 < 50)<= 93)) {var now = Date.now();
3092 < 50)<= 93)) {var vMovement = !prevCursor || cursor.row != prevCursor.row;
3093 < 50)<= 93)) {var hMovement = !prevCursor || cursor.column != prevCursor.column;
3094 < 50)<= 93)) {if (!cursorMovedTime || vMovement || hMovement) {
3095 < 50)<= 93)) {
3096 < 50)<= 93)) {
3097 < 50)<= 93)) {
3098 < 50)<= 93)) {
3099 < 50)<= 93)) {
3100 < 50)<= 93)) {else {
3101 < 50)<= 93)) {var distance = calcDistance(cursorPointOnCaretMoved.x, cursorPointOnCaretMoved.y, x, y);
3102 < 50)<= 93)) {if (distance > SCROLL_CURSOR_HYSTERESIS) {
3103 < 50)<= 93)) {null;
3104 < 50)<= 93)) {else if (now - cursorMovedTime >= SCROLL_CURSOR_DELAY) {
3105 < 50)<= 93)) {
3106 < 50)<= 93)) {null;
3107 < 50)<= 93)) {
3108 < 50)<= 93)) {
3109 < 50)<= 93)) {
3110  
3111 < 50)<= 93)) {function autoScroll(cursor, prevCursor) {
3112 < 50)<= 93)) {var now = Date.now();
3113 < 50)<= 93)) {var lineHeight = editor.renderer.layerConfig.lineHeight;
3114 < 50)<= 93)) {var characterWidth = editor.renderer.layerConfig.characterWidth;
3115 < 50)<= 93)) {var editorRect = editor.renderer.scroller.getBoundingClientRect();
3116 < 50)<= 93)) {var offsets = {
3117 < 50)<= 93)) {
3118 < 50)<= 93)) {
3119 < 50)<= 93)) {
3120 < 50)<= 93)) {
3121 < 50)<= 93)) {
3122 < 50)<= 93)) {
3123 < 50)<= 93)) {
3124 < 50)<= 93)) {
3125 < 50)<= 93)) {
3126 < 50)<= 93)) {var nearestXOffset = Math.min(offsets.x.left, offsets.x.right);
3127 < 50)<= 93)) {var nearestYOffset = Math.min(offsets.y.top, offsets.y.bottom);
3128 < 50)<= 93)) {var scrollCursor = {row: cursor.row, column: cursor.column};
3129 < 50)<= 93)) {if (nearestXOffset / characterWidth <= 2) {
3130 < 50)<= 93)) {<= 2) { scrollCursor.column += (offsets.x.left < offsets.x.right ? -3 : +2);
3131 < 50)<= 93)) {<= 2) {< offsets.x.right ? -3 : +2); }
3132 < 50)<= 93)) {<= 2) {< offsets.x.right ? -3 : +2); if (nearestYOffset / lineHeight <= 1) {
3133 < 50)<= 93)) {
3134 < 50)<= 93)) {
3135 < 50)<= 93)) {var vScroll = cursor.row != scrollCursor.row;
3136 < 50)<= 93)) {var hScroll = cursor.column != scrollCursor.column;
3137 < 50)<= 93)) {var vMovement = !prevCursor || cursor.row != prevCursor.row;
3138 < 50)<= 93)) {if (vScroll || (hScroll && !vMovement)) {
3139 < 50)<= 93)) {if (!autoScrollStartTime)
3140 < 50)<= 93)) {
3141 < 50)<= 93)) {else if (now - autoScrollStartTime >= AUTOSCROLL_DELAY)
3142 < 50)<= 93)) {
3143 < 50)<= 93)) {else {
3144 < 50)<= 93)) {null;
3145 < 50)<= 93)) {
3146 < 50)<= 93)) {
3147  
3148 < 50)<= 93)) {function onDragInterval() {
3149 < 50)<= 93)) {var prevCursor = dragCursor;
3150 < 50)<= 93)) {
3151 < 50)<= 93)) {
3152 < 50)<= 93)) {
3153 < 50)<= 93)) {
3154  
3155 < 50)<= 93)) {function addDragMarker() {
3156 < 50)<= 93)) {
3157 < 50)<= 93)) {"ace_selection", editor.getSelectionStyle());
3158 < 50)<= 93)) {
3159 < 50)<= 93)) {if (editor.isFocused())
3160 < 50)<= 93)) {false);
3161 < 50)<= 93)) {
3162 < 50)<= 93)) {
3163 < 50)<= 93)) {
3164 < 50)<= 93)) {
3165 < 50)<= 93)) {"mousemove", onMouseMove);
3166 < 50)<= 93)) {
3167  
3168 < 50)<= 93)) {function clearDragMarker() {
3169 < 50)<= 93)) {
3170 < 50)<= 93)) {
3171 < 50)<= 93)) {null;
3172 < 50)<= 93)) {
3173 < 50)<= 93)) {
3174 < 50)<= 93)) {
3175 < 50)<= 93)) {if (editor.isFocused() && !isInternal)
3176 < 50)<= 93)) {
3177 < 50)<= 93)) {null;
3178 < 50)<= 93)) {null;
3179 < 50)<= 93)) {
3180 < 50)<= 93)) {null;
3181 < 50)<= 93)) {null;
3182 < 50)<= 93)) {"mousemove", onMouseMove);
3183 < 50)<= 93)) {
3184 < 50)<= 93)) {var onMouseMoveTimer = null;
3185 < 50)<= 93)) {function onMouseMove() {
3186 < 50)<= 93)) {if (onMouseMoveTimer == null) {
3187 < 50)<= 93)) {function() {
3188 < 50)<= 93)) {if (onMouseMoveTimer != null && dragSelectionMarker)
3189 < 50)<= 93)) {
3190 < 50)<= 93)) {
3191 < 50)<= 93)) {
3192 < 50)<= 93)) {
3193  
3194 < 50)<= 93)) {function canAccept(dataTransfer) {
3195 < 50)<= 93)) {var types = dataTransfer.types;
3196 < 50)<= 93)) {return !types || Array.prototype.some.call(types, function(type) {
3197 < 50)<= 93)) {return type == 'text/plain' || type == 'Text';
3198 < 50)<= 93)) {
3199 < 50)<= 93)) {
3200  
3201 < 50)<= 93)) {function getDropEffect(e) {
3202 < 50)<= 93)) {var copyAllowed = ['copy', 'copymove', 'all', 'uninitialized'];
3203 < 50)<= 93)) {var moveAllowed = ['move', 'copymove', 'linkmove', 'all', 'uninitialized'];
3204  
3205 < 50)<= 93)) {var copyModifierState = useragent.isMac ? e.altKey : e.ctrlKey;
3206 < 50)<= 93)) {var effectAllowed = "uninitialized";
3207 < 50)<= 93)) {try {
3208 < 50)<= 93)) {
3209 < 50)<= 93)) {catch (e) {}
3210 < 50)<= 93)) {var dropEffect = "none";
3211  
3212 < 50)<= 93)) {if (copyModifierState && copyAllowed.indexOf(effectAllowed) >= 0)
3213 < 50)<= 93)) {"copy";
3214 < 50)<= 93)) {else if (moveAllowed.indexOf(effectAllowed) >= 0)
3215 < 50)<= 93)) {"move";
3216 < 50)<= 93)) {else if (copyAllowed.indexOf(effectAllowed) >= 0)
3217 < 50)<= 93)) {"copy";
3218  
3219 < 50)<= 93)) {return dropEffect;
3220 < 50)<= 93)) {
3221 < 50)<= 93)) {
3222  
3223 < 50)<= 93)) {function() {
3224  
3225 < 50)<= 93)) {this.dragWait = function() {
3226 < 50)<= 93)) {var interval = Date.now() - this.mousedownEvent.time;
3227 < 50)<= 93)) {if (interval > this.editor.getDragDelay())
3228 < 50)<= 93)) {this.startDrag();
3229 < 50)<= 93)) {
3230  
3231 < 50)<= 93)) {this.dragWaitEnd = function() {
3232 < 50)<= 93)) {var target = this.editor.container;
3233 < 50)<= 93)) {false;
3234 < 50)<= 93)) {this.startSelect(this.mousedownEvent.getDocumentPosition());
3235 < 50)<= 93)) {this.selectEnd();
3236 < 50)<= 93)) {
3237  
3238 < 50)<= 93)) {this.dragReadyEnd = function(e) {
3239 < 50)<= 93)) {this.editor.renderer.$cursorLayer.setBlinking(!this.editor.getReadOnly());
3240 < 50)<= 93)) {this.editor.unsetStyle("ace_dragging");
3241 < 50)<= 93)) {this.editor.renderer.setCursorStyle("");
3242 < 50)<= 93)) {this.dragWaitEnd();
3243 < 50)<= 93)) {
3244  
3245 < 50)<= 93)) {this.startDrag = function(){
3246 < 50)<= 93)) {this.cancelDrag = false;
3247 < 50)<= 93)) {var editor = this.editor;
3248 < 50)<= 93)) {var target = editor.container;
3249 < 50)<= 93)) {true;
3250 < 50)<= 93)) {false);
3251 < 50)<= 93)) {"ace_dragging");
3252 < 50)<= 93)) {var cursorStyle = useragent.isWin ? "default" : "move";
3253 < 50)<= 93)) {
3254 < 50)<= 93)) {this.setState("dragReady");
3255 < 50)<= 93)) {
3256  
3257 < 50)<= 93)) {this.onMouseDrag = function(e) {
3258 < 50)<= 93)) {var target = this.editor.container;
3259 < 50)<= 93)) {if (useragent.isIE && this.state == "dragReady") {
3260 < 50)<= 93)) {var distance = calcDistance(this.mousedownEvent.x, this.mousedownEvent.y, this.x, this.y);
3261 < 50)<= 93)) {if (distance > 3)
3262 < 50)<= 93)) {
3263 < 50)<= 93)) {
3264 < 50)<= 93)) {if (this.state === "dragWait") {
3265 < 50)<= 93)) {var distance = calcDistance(this.mousedownEvent.x, this.mousedownEvent.y, this.x, this.y);
3266 < 50)<= 93)) {if (distance > 0) {
3267 < 50)<= 93)) {false;
3268 < 50)<= 93)) {this.startSelect(this.mousedownEvent.getDocumentPosition());
3269 < 50)<= 93)) {
3270 < 50)<= 93)) {
3271 < 50)<= 93)) {
3272  
3273 < 50)<= 93)) {this.onMouseDown = function(e) {
3274 < 50)<= 93)) {if (!this.$dragEnabled)
3275 < 50)<= 93)) {return;
3276 < 50)<= 93)) {this.mousedownEvent = e;
3277 < 50)<= 93)) {var editor = this.editor;
3278  
3279 < 50)<= 93)) {var inSelection = e.inSelection();
3280 < 50)<= 93)) {var button = e.getButton();
3281 < 50)<= 93)) {var clickCount = e.domEvent.detail || 1;
3282 < 50)<= 93)) {if (clickCount === 1 && button === 0 && inSelection) {
3283 < 50)<= 93)) {if (e.editor.inMultiSelectMode && (e.getAccelKey() || e.getShiftKey()))
3284 < 50)<= 93)) {return;
3285 < 50)<= 93)) {this.mousedownEvent.time = Date.now();
3286 < 50)<= 93)) {var eventTarget = e.domEvent.target || e.domEvent.srcElement;
3287 < 50)<= 93)) {if ("unselectable" in eventTarget)
3288 < 50)<= 93)) {"on";
3289 < 50)<= 93)) {if (editor.getDragDelay()) {
3290 < 50)<= 93)) {if (useragent.isWebKit) {
3291 < 50)<= 93)) {this.cancelDrag = true;
3292 < 50)<= 93)) {var mouseTarget = editor.container;
3293 < 50)<= 93)) {true;
3294 < 50)<= 93)) {
3295 < 50)<= 93)) {this.setState("dragWait");
3296 < 50)<= 93)) {else {
3297 < 50)<= 93)) {this.startDrag();
3298 < 50)<= 93)) {
3299 < 50)<= 93)) {this.captureMouse(e, this.onMouseDrag.bind(this));
3300 < 50)<= 93)) {true;
3301 < 50)<= 93)) {
3302 < 50)<= 93)) {
3303  
3304 < 50)<= 93)) {
3305  
3306  
3307 < 50)<= 93)) {function calcDistance(ax, ay, bx, by) {
3308 < 50)<= 93)) {return Math.sqrt(Math.pow(bx - ax, 2) + Math.pow(by - ay, 2));
3309 < 50)<= 93)) {
3310  
3311 < 50)<= 93)) {
3312  
3313 < 50)<= 93)) {
3314  
3315 < 50)<= 93)) {"ace/lib/net",["require","exports","module","ace/lib/dom"], function(require, exports, module) {
3316 < 50)<= 93)) {"use strict";
3317 < 50)<= 93)) {var dom = require("./dom");
3318  
3319 < 50)<= 93)) {function (url, callback) {
3320 < 50)<= 93)) {var xhr = new XMLHttpRequest();
3321 < 50)<= 93)) {'GET', url, true);
3322 < 50)<= 93)) {function () {
3323 < 50)<= 93)) {if (xhr.readyState === 4) {
3324 < 50)<= 93)) {
3325 < 50)<= 93)) {
3326 < 50)<= 93)) {
3327 < 50)<= 93)) {null);
3328 < 50)<= 93)) {
3329  
3330 < 50)<= 93)) {function(path, callback) {
3331 < 50)<= 93)) {var head = dom.getDocumentHead();
3332 < 50)<= 93)) {var s = document.createElement('script');
3333  
3334 < 50)<= 93)) {
3335 < 50)<= 93)) {
3336  
3337 < 50)<= 93)) {function(_, isAbort) {
3338 < 50)<= 93)) {if (isAbort || !s.readyState || s.readyState == "loaded" || s.readyState == "complete") {
3339 < 50)<= 93)) {null;
3340 < 50)<= 93)) {if (!isAbort)
3341 < 50)<= 93)) {
3342 < 50)<= 93)) {
3343 < 50)<= 93)) {
3344 < 50)<= 93)) {
3345 < 50)<= 93)) {function(url) {
3346 < 50)<= 93)) {var a = document.createElement('a');
3347 < 50)<= 93)) {
3348 < 50)<= 93)) {return a.href;
3349 < 50)<= 93)) {
3350  
3351 < 50)<= 93)) {
3352  
3353 < 50)<= 93)) {"ace/lib/event_emitter",["require","exports","module"], function(require, exports, module) {
3354 < 50)<= 93)) {"use strict";
3355  
3356 < 50)<= 93)) {var EventEmitter = {};
3357 < 50)<= 93)) {var stopPropagation = function() { this.propagationStopped = true; };
3358 < 50)<= 93)) {var preventDefault = function() { this.defaultPrevented = true; };
3359  
3360 < 50)<= 93)) {
3361 < 50)<= 93)) {function(eventName, e) {
3362 < 50)<= 93)) {this._eventRegistry || (this._eventRegistry = {});
3363 < 50)<= 93)) {this._defaultHandlers || (this._defaultHandlers = {});
3364  
3365 < 50)<= 93)) {var listeners = this._eventRegistry[eventName] || [];
3366 < 50)<= 93)) {var defaultHandler = this._defaultHandlers[eventName];
3367 < 50)<= 93)) {if (!listeners.length && !defaultHandler)
3368 < 50)<= 93)) {return;
3369  
3370 < 50)<= 93)) {if (typeof e != "object" || !e)
3371 < 50)<= 93)) {
3372  
3373 < 50)<= 93)) {if (!e.type)
3374 < 50)<= 93)) {
3375 < 50)<= 93)) {if (!e.stopPropagation)
3376 < 50)<= 93)) {
3377 < 50)<= 93)) {if (!e.preventDefault)
3378 < 50)<= 93)) {
3379  
3380 < 50)<= 93)) {
3381 < 50)<= 93)) {for (var i=0; i<listeners.length; i++) {
3382 < 50)<= 93)) {this);
3383 < 50)<= 93)) {if (e.propagationStopped)
3384 < 50)<= 93)) {break;
3385 < 50)<= 93)) {
3386  
3387 < 50)<= 93)) {if (defaultHandler && !e.defaultPrevented)
3388 < 50)<= 93)) {return defaultHandler(e, this);
3389 < 50)<= 93)) {
3390  
3391  
3392 < 50)<= 93)) {function(eventName, e) {
3393 < 50)<= 93)) {var listeners = (this._eventRegistry || {})[eventName];
3394 < 50)<= 93)) {if (!listeners)
3395 < 50)<= 93)) {return;
3396 < 50)<= 93)) {
3397 < 50)<= 93)) {for (var i=0; i<listeners.length; i++)
3398 < 50)<= 93)) {this);
3399 < 50)<= 93)) {
3400  
3401 < 50)<= 93)) {function(eventName, callback) {
3402 < 50)<= 93)) {var _self = this;
3403 < 50)<= 93)) {this.addEventListener(eventName, function newCallback() {
3404 < 50)<= 93)) {
3405 < 50)<= 93)) {null, arguments);
3406 < 50)<= 93)) {
3407 < 50)<= 93)) {
3408  
3409  
3410 < 50)<= 93)) {function(eventName, callback) {
3411 < 50)<= 93)) {var handlers = this._defaultHandlers
3412 < 50)<= 93)) {if (!handlers)
3413 < 50)<= 93)) {this._defaultHandlers = {_disabled_: {}};
3414  
3415 < 50)<= 93)) {if (handlers[eventName]) {
3416 < 50)<= 93)) {var old = handlers[eventName];
3417 < 50)<= 93)) {var disabled = handlers._disabled_[eventName];
3418 < 50)<= 93)) {if (!disabled)
3419 < 50)<= 93)) {
3420 < 50)<= 93)) {
3421 < 50)<= 93)) {var i = disabled.indexOf(callback);
3422 < 50)<= 93)) {if (i != -1)
3423 < 50)<= 93)) {
3424 < 50)<= 93)) {
3425 < 50)<= 93)) {
3426 < 50)<= 93)) {
3427 < 50)<= 93)) {function(eventName, callback) {
3428 < 50)<= 93)) {var handlers = this._defaultHandlers
3429 < 50)<= 93)) {if (!handlers)
3430 < 50)<= 93)) {return;
3431 < 50)<= 93)) {var disabled = handlers._disabled_[eventName];
3432  
3433 < 50)<= 93)) {if (handlers[eventName] == callback) {
3434 < 50)<= 93)) {var old = handlers[eventName];
3435 < 50)<= 93)) {if (disabled)
3436 < 50)<= 93)) {this.setDefaultHandler(eventName, disabled.pop());
3437 < 50)<= 93)) {else if (disabled) {
3438 < 50)<= 93)) {var i = disabled.indexOf(callback);
3439 < 50)<= 93)) {if (i != -1)
3440 < 50)<= 93)) {
3441 < 50)<= 93)) {
3442 < 50)<= 93)) {
3443  
3444 < 50)<= 93)) {
3445 < 50)<= 93)) {function(eventName, callback, capturing) {
3446 < 50)<= 93)) {this._eventRegistry = this._eventRegistry || {};
3447  
3448 < 50)<= 93)) {var listeners = this._eventRegistry[eventName];
3449 < 50)<= 93)) {if (!listeners)
3450 < 50)<= 93)) {this._eventRegistry[eventName] = [];
3451  
3452 < 50)<= 93)) {if (listeners.indexOf(callback) == -1)
3453 < 50)<= 93)) {"unshift" : "push"](callback);
3454 < 50)<= 93)) {return callback;
3455 < 50)<= 93)) {
3456  
3457 < 50)<= 93)) {
3458 < 50)<= 93)) {
3459 < 50)<= 93)) {function(eventName, callback) {
3460 < 50)<= 93)) {this._eventRegistry = this._eventRegistry || {};
3461  
3462 < 50)<= 93)) {var listeners = this._eventRegistry[eventName];
3463 < 50)<= 93)) {if (!listeners)
3464 < 50)<= 93)) {return;
3465  
3466 < 50)<= 93)) {var index = listeners.indexOf(callback);
3467 < 50)<= 93)) {if (index !== -1)
3468 < 50)<= 93)) {
3469 < 50)<= 93)) {
3470  
3471 < 50)<= 93)) {function(eventName) {
3472 < 50)<= 93)) {if (this._eventRegistry) this._eventRegistry[eventName] = [];
3473 < 50)<= 93)) {
3474  
3475 < 50)<= 93)) {
3476  
3477 < 50)<= 93)) {
3478  
3479 < 50)<= 93)) {"ace/lib/app_config",["require","exports","module","ace/lib/oop","ace/lib/event_emitter"], function(require, exports, module) {
3480 < 50)<= 93)) {"no use strict";
3481  
3482 < 50)<= 93)) {var oop = require("./oop");
3483 < 50)<= 93)) {var EventEmitter = require("./event_emitter").EventEmitter;
3484  
3485 < 50)<= 93)) {var optionsProvider = {
3486 < 50)<= 93)) {function(optList) {
3487 < 50)<= 93)) {function(key) {
3488 < 50)<= 93)) {this.setOption(key, optList[key]);
3489 < 50)<= 93)) {this);
3490 < 50)<= 93)) {
3491 < 50)<= 93)) {function(optionNames) {
3492 < 50)<= 93)) {var result = {};
3493 < 50)<= 93)) {if (!optionNames) {
3494 < 50)<= 93)) {this.$options);
3495 < 50)<= 93)) {else if (!Array.isArray(optionNames)) {
3496 < 50)<= 93)) {
3497 < 50)<= 93)) {
3498 < 50)<= 93)) {
3499 < 50)<= 93)) {function(key) {
3500 < 50)<= 93)) {this.getOption(key);
3501 < 50)<= 93)) {this);
3502 < 50)<= 93)) {return result;
3503 < 50)<= 93)) {
3504 < 50)<= 93)) {function(name, value) {
3505 < 50)<= 93)) {if (this["$" + name] === value)
3506 < 50)<= 93)) {return;
3507 < 50)<= 93)) {var opt = this.$options[name];
3508 < 50)<= 93)) {if (!opt) {
3509 < 50)<= 93)) {return warn('misspelled option "' + name + '"');
3510 < 50)<= 93)) {
3511 < 50)<= 93)) {if (opt.forwardTo)
3512 < 50)<= 93)) {return this[opt.forwardTo] && this[opt.forwardTo].setOption(name, value);
3513  
3514 < 50)<= 93)) {if (!opt.handlesSet)
3515 < 50)<= 93)) {this["$" + name] = value;
3516 < 50)<= 93)) {if (opt && opt.set)
3517 < 50)<= 93)) {this, value);
3518 < 50)<= 93)) {
3519 < 50)<= 93)) {function(name) {
3520 < 50)<= 93)) {var opt = this.$options[name];
3521 < 50)<= 93)) {if (!opt) {
3522 < 50)<= 93)) {return warn('misspelled option "' + name + '"');
3523 < 50)<= 93)) {
3524 < 50)<= 93)) {if (opt.forwardTo)
3525 < 50)<= 93)) {return this[opt.forwardTo] && this[opt.forwardTo].getOption(name);
3526 < 50)<= 93)) {return opt && opt.get ? opt.get.call(this) : this["$" + name];
3527 < 50)<= 93)) {
3528 < 50)<= 93)) {
3529  
3530 < 50)<= 93)) {function warn(message) {
3531 < 50)<= 93)) {if (typeof console != "undefined" && console.warn)
3532 < 50)<= 93)) {
3533 < 50)<= 93)) {
3534  
3535 < 50)<= 93)) {function reportError(msg, data) {
3536 < 50)<= 93)) {var e = new Error(msg);
3537 < 50)<= 93)) {
3538 < 50)<= 93)) {if (typeof console == "object" && console.error)
3539 < 50)<= 93)) {
3540 < 50)<= 93)) {function() { throw e; });
3541 < 50)<= 93)) {
3542  
3543 < 50)<= 93)) {var AppConfig = function() {
3544 < 50)<= 93)) {this.$defaultOptions = {};
3545 < 50)<= 93)) {
3546  
3547 < 50)<= 93)) {function() {
3548 < 50)<= 93)) {this, EventEmitter);
3549 < 50)<= 93)) {this.defineOptions = function(obj, path, options) {
3550 < 50)<= 93)) {if (!obj.$options)
3551 < 50)<= 93)) {this.$defaultOptions[path] = obj.$options = {};
3552  
3553 < 50)<= 93)) {function(key) {
3554 < 50)<= 93)) {var opt = options[key];
3555 < 50)<= 93)) {if (typeof opt == "string")
3556 < 50)<= 93)) {
3557  
3558 < 50)<= 93)) {
3559 < 50)<= 93)) {
3560 < 50)<= 93)) {if ("initialValue" in opt)
3561 < 50)<= 93)) {"$" + opt.name] = opt.initialValue;
3562 < 50)<= 93)) {
3563 < 50)<= 93)) {
3564  
3565 < 50)<= 93)) {return this;
3566 < 50)<= 93)) {
3567  
3568 < 50)<= 93)) {this.resetOptions = function(obj) {
3569 < 50)<= 93)) {function(key) {
3570 < 50)<= 93)) {var opt = obj.$options[key];
3571 < 50)<= 93)) {if ("value" in opt)
3572 < 50)<= 93)) {
3573 < 50)<= 93)) {
3574 < 50)<= 93)) {
3575  
3576 < 50)<= 93)) {this.setDefaultValue = function(path, name, value) {
3577 < 50)<= 93)) {var opts = this.$defaultOptions[path] || (this.$defaultOptions[path] = {});
3578 < 50)<= 93)) {if (opts[name]) {
3579 < 50)<= 93)) {if (opts.forwardTo)
3580 < 50)<= 93)) {this.setDefaultValue(opts.forwardTo, name, value);
3581 < 50)<= 93)) {else
3582 < 50)<= 93)) {
3583 < 50)<= 93)) {
3584 < 50)<= 93)) {
3585  
3586 < 50)<= 93)) {this.setDefaultValues = function(path, optionHash) {
3587 < 50)<= 93)) {function(key) {
3588 < 50)<= 93)) {this.setDefaultValue(path, key, optionHash[key]);
3589 < 50)<= 93)) {this);
3590 < 50)<= 93)) {
3591  
3592 < 50)<= 93)) {this.warn = warn;
3593 < 50)<= 93)) {this.reportError = reportError;
3594  
3595 < 50)<= 93)) {
3596  
3597 < 50)<= 93)) {
3598  
3599 < 50)<= 93)) {
3600  
3601 < 50)<= 93)) {"ace/config",["require","exports","module","ace/lib/lang","ace/lib/oop","ace/lib/net","ace/lib/app_config"], function(require, exports, module) {
3602 < 50)<= 93)) {"no use strict";
3603  
3604 < 50)<= 93)) {var lang = require("./lib/lang");
3605 < 50)<= 93)) {var oop = require("./lib/oop");
3606 < 50)<= 93)) {var net = require("./lib/net");
3607 < 50)<= 93)) {var AppConfig = require("./lib/app_config").AppConfig;
3608  
3609 < 50)<= 93)) {new AppConfig();
3610  
3611 < 50)<= 93)) {var global = (function() {
3612 < 50)<= 93)) {return this || typeof window != "undefined" && window;
3613 < 50)<= 93)) {
3614  
3615 < 50)<= 93)) {var options = {
3616 < 50)<= 93)) {false,
3617 < 50)<= 93)) {null,
3618 < 50)<= 93)) {null,
3619 < 50)<= 93)) {null,
3620 < 50)<= 93)) {"",
3621 < 50)<= 93)) {".js",
3622 < 50)<= 93)) {
3623 < 50)<= 93)) {
3624  
3625 < 50)<= 93)) {function(key) {
3626 < 50)<= 93)) {if (!options.hasOwnProperty(key))
3627 < 50)<= 93)) {throw new Error("Unknown config key: " + key);
3628  
3629 < 50)<= 93)) {return options[key];
3630 < 50)<= 93)) {
3631  
3632 < 50)<= 93)) {function(key, value) {
3633 < 50)<= 93)) {if (!options.hasOwnProperty(key))
3634 < 50)<= 93)) {throw new Error("Unknown config key: " + key);
3635  
3636 < 50)<= 93)) {
3637 < 50)<= 93)) {
3638  
3639 < 50)<= 93)) {function() {
3640 < 50)<= 93)) {return lang.copyObject(options);
3641 < 50)<= 93)) {
3642 < 50)<= 93)) {function(name, component) {
3643 < 50)<= 93)) {if (options.$moduleUrls[name])
3644 < 50)<= 93)) {return options.$moduleUrls[name];
3645  
3646 < 50)<= 93)) {var parts = name.split("/");
3647 < 50)<= 93)) {"";
3648 < 50)<= 93)) {var sep = component == "snippets" ? "/" : "-";
3649 < 50)<= 93)) {var base = parts[parts.length - 1];
3650 < 50)<= 93)) {if (component == "worker" && sep == "-") {
3651 < 50)<= 93)) {var re = new RegExp("^" + component + "[\\-_]|[\\-_]" + component + "$", "g");
3652 < 50)<= 93)) {"");
3653 < 50)<= 93)) {
3654  
3655 < 50)<= 93)) {if ((!base || base == component) && parts.length > 1)
3656 < 50)<= 93)) {
3657 < 50)<= 93)) {var path = options[component + "Path"];
3658 < 50)<= 93)) {if (path == null) {
3659 < 50)<= 93)) {
3660 < 50)<= 93)) {else if (sep == "/") {
3661 < 50)<= 93)) {"";
3662 < 50)<= 93)) {
3663 < 50)<= 93)) {if (path && path.slice(-1) != "/")
3664 < 50)<= 93)) {"/";
3665 < 50)<= 93)) {return path + component + sep + base + this.get("suffix");
3666 < 50)<= 93)) {
3667  
3668 < 50)<= 93)) {function(name, subst) {
3669 < 50)<= 93)) {return options.$moduleUrls[name] = subst;
3670 < 50)<= 93)) {
3671  
3672 < 50)<= 93)) {
3673 < 50)<= 93)) {function(moduleName, onLoad) {
3674 < 50)<= 93)) {var module, moduleType;
3675 < 50)<= 93)) {if (Array.isArray(moduleName)) {
3676 < 50)<= 93)) {
3677 < 50)<= 93)) {
3678 < 50)<= 93)) {
3679  
3680 < 50)<= 93)) {try {
3681 < 50)<= 93)) {
3682 < 50)<= 93)) {catch (e) {}
3683 < 50)<= 93)) {if (module && !exports.$loading[moduleName])
3684 < 50)<= 93)) {return onLoad && onLoad(module);
3685  
3686 < 50)<= 93)) {if (!exports.$loading[moduleName])
3687 < 50)<= 93)) {
3688  
3689 < 50)<= 93)) {
3690  
3691 < 50)<= 93)) {if (exports.$loading[moduleName].length > 1)
3692 < 50)<= 93)) {return;
3693  
3694 < 50)<= 93)) {var afterLoad = function() {
3695 < 50)<= 93)) {function(module) {
3696 < 50)<= 93)) {"load.module", {name: moduleName, module: module});
3697 < 50)<= 93)) {var listeners = exports.$loading[moduleName];
3698 < 50)<= 93)) {null;
3699 < 50)<= 93)) {function(onLoad) {
3700 < 50)<= 93)) {
3701 < 50)<= 93)) {
3702 < 50)<= 93)) {
3703 < 50)<= 93)) {
3704  
3705 < 50)<= 93)) {if (!exports.get("packaged"))
3706 < 50)<= 93)) {return afterLoad();
3707 < 50)<= 93)) {
3708 < 50)<= 93)) {
3709 < 50)<= 93)) {true);function init(packaged) {
3710  
3711 < 50)<= 93)) {if (!global || !global.document)
3712 < 50)<= 93)) {return;
3713  
3714 < 50)<= 93)) {
3715  
3716 < 50)<= 93)) {var scriptOptions = {};
3717 < 50)<= 93)) {var scriptUrl = "";
3718 < 50)<= 93)) {var currentScript = (document.currentScript || document._currentScript ); // native or polyfill
3719 < 50)<= 93)) { var currentDocument = currentScript && currentScript.ownerDocument || document;
3720  
3721 < 50)<= 93)) {var scripts = currentDocument.getElementsByTagName("script");
3722 < 50)<= 93)) {for (var i=0; i<scripts.length; i++) {
3723 < 50)<= 93)) {var script = scripts[i];
3724  
3725 < 50)<= 93)) {var src = script.src || script.getAttribute("src");
3726 < 50)<= 93)) {if (!src)
3727 < 50)<= 93)) {continue;
3728  
3729 < 50)<= 93)) {var attributes = script.attributes;
3730 < 50)<= 93)) {for (var j=0, l=attributes.length; j < l; j++) {
3731 < 50)<= 93)) {var attr = attributes[j];
3732 < 50)<= 93)) {if (attr.name.indexOf("data-ace-") === 0) {
3733 < 50)<= 93)) {/^data-ace-/, ""))] = attr.value;
3734 < 50)<= 93)) {
3735 < 50)<= 93)) {
3736  
3737 < 50)<= 93)) {var m = src.match(/^(.*)\/ace(\-\w+)?\.js(\?|$)/);
3738 < 50)<= 93)) {if (m)
3739 < 50)<= 93)) {
3740 < 50)<= 93)) {
3741  
3742 < 50)<= 93)) {if (scriptUrl) {
3743 < 50)<= 93)) {
3744 < 50)<= 93)) {true;
3745 < 50)<= 93)) {
3746  
3747 < 50)<= 93)) {
3748 < 50)<= 93)) {
3749 < 50)<= 93)) {
3750 < 50)<= 93)) {
3751 < 50)<= 93)) {
3752  
3753 < 50)<= 93)) {for (var key in scriptOptions)
3754 < 50)<= 93)) {if (typeof scriptOptions[key] !== "undefined")
3755 < 50)<= 93)) {
3756 < 50)<= 93)) {
3757  
3758 < 50)<= 93)) {
3759  
3760 < 50)<= 93)) {function deHyphenate(str) {
3761 < 50)<= 93)) {return str.replace(/-(.)/g, function(m, m1) { return m1.toUpperCase(); });
3762 < 50)<= 93)) {
3763  
3764 < 50)<= 93)) {
3765  
3766 < 50)<= 93)) {"ace/mouse/mouse_handler",["require","exports","module","ace/lib/event","ace/lib/useragent","ace/mouse/default_handlers","ace/mouse/default_gutter_handler","ace/mouse/mouse_event","ace/mouse/dragdrop_handler","ace/config"], function(require, exports, module) {
3767 < 50)<= 93)) {"use strict";
3768  
3769 < 50)<= 93)) {var event = require("../lib/event");
3770 < 50)<= 93)) {var useragent = require("../lib/useragent");
3771 < 50)<= 93)) {var DefaultHandlers = require("./default_handlers").DefaultHandlers;
3772 < 50)<= 93)) {var DefaultGutterHandler = require("./default_gutter_handler").GutterHandler;
3773 < 50)<= 93)) {var MouseEvent = require("./mouse_event").MouseEvent;
3774 < 50)<= 93)) {var DragdropHandler = require("./dragdrop_handler").DragdropHandler;
3775 < 50)<= 93)) {var config = require("../config");
3776  
3777 < 50)<= 93)) {var MouseHandler = function(editor) {
3778 < 50)<= 93)) {var _self = this;
3779 < 50)<= 93)) {this.editor = editor;
3780  
3781 < 50)<= 93)) {new DefaultHandlers(this);
3782 < 50)<= 93)) {new DefaultGutterHandler(this);
3783 < 50)<= 93)) {new DragdropHandler(this);
3784  
3785 < 50)<= 93)) {var focusEditor = function(e) {
3786 < 50)<= 93)) {var windowBlurred = !document.hasFocus || !document.hasFocus()
3787 < 50)<= 93)) {
3788 < 50)<= 93)) {if (windowBlurred)
3789 < 50)<= 93)) {
3790 < 50)<= 93)) {
3791 < 50)<= 93)) {
3792  
3793 < 50)<= 93)) {var mouseTarget = editor.renderer.getMouseEventTarget();
3794 < 50)<= 93)) {"click", this.onMouseEvent.bind(this, "click"));
3795 < 50)<= 93)) {"mousemove", this.onMouseMove.bind(this, "mousemove"));
3796 < 50)<= 93)) {
3797 < 50)<= 93)) {
3798 < 50)<= 93)) {
3799 < 50)<= 93)) {
3800 < 50)<= 93)) {
3801 < 50)<= 93)) {this, "onMouseEvent");
3802 < 50)<= 93)) {this.onMouseWheel.bind(this, "mousewheel"));
3803 < 50)<= 93)) {this.onTouchMove.bind(this, "touchmove"));
3804  
3805 < 50)<= 93)) {var gutterEl = editor.renderer.$gutter;
3806 < 50)<= 93)) {"mousedown", this.onMouseEvent.bind(this, "guttermousedown"));
3807 < 50)<= 93)) {"click", this.onMouseEvent.bind(this, "gutterclick"));
3808 < 50)<= 93)) {"dblclick", this.onMouseEvent.bind(this, "gutterdblclick"));
3809 < 50)<= 93)) {"mousemove", this.onMouseEvent.bind(this, "guttermousemove"));
3810  
3811 < 50)<= 93)) {"mousedown", focusEditor);
3812 < 50)<= 93)) {"mousedown", focusEditor);
3813 < 50)<= 93)) {if (useragent.isIE && editor.renderer.scrollBarV) {
3814 < 50)<= 93)) {"mousedown", focusEditor);
3815 < 50)<= 93)) {"mousedown", focusEditor);
3816 < 50)<= 93)) {
3817  
3818 < 50)<= 93)) {"mousemove", function(e){
3819 < 50)<= 93)) {if (_self.state || _self.$dragDelay || !_self.$dragEnabled)
3820 < 50)<= 93)) {return;
3821  
3822 < 50)<= 93)) {var character = editor.renderer.screenToTextCoordinates(e.x, e.y);
3823 < 50)<= 93)) {var range = editor.session.selection.getRange();
3824 < 50)<= 93)) {var renderer = editor.renderer;
3825  
3826 < 50)<= 93)) {if (!range.isEmpty() && range.insideStart(character.row, character.column)) {
3827 < 50)<= 93)) {"default");
3828 < 50)<= 93)) {else {
3829 < 50)<= 93)) {"");
3830 < 50)<= 93)) {
3831 < 50)<= 93)) {
3832 < 50)<= 93)) {
3833  
3834 < 50)<= 93)) {function() {
3835 < 50)<= 93)) {this.onMouseEvent = function(name, e) {
3836 < 50)<= 93)) {this.editor._emit(name, new MouseEvent(e, this.editor));
3837 < 50)<= 93)) {
3838  
3839 < 50)<= 93)) {this.onMouseMove = function(name, e) {
3840 < 50)<= 93)) {var listeners = this.editor._eventRegistry && this.editor._eventRegistry.mousemove;
3841 < 50)<= 93)) {if (!listeners || !listeners.length)
3842 < 50)<= 93)) {return;
3843  
3844 < 50)<= 93)) {this.editor._emit(name, new MouseEvent(e, this.editor));
3845 < 50)<= 93)) {
3846  
3847 < 50)<= 93)) {this.onMouseWheel = function(name, e) {
3848 < 50)<= 93)) {var mouseEvent = new MouseEvent(e, this.editor);
3849 < 50)<= 93)) {this.$scrollSpeed * 2;
3850 < 50)<= 93)) {
3851 < 50)<= 93)) {
3852  
3853 < 50)<= 93)) {this.editor._emit(name, mouseEvent);
3854 < 50)<= 93)) {
3855  
3856 < 50)<= 93)) {this.onTouchMove = function (name, e) {
3857 < 50)<= 93)) {var mouseEvent = new MouseEvent(e, this.editor);
3858 < 50)<= 93)) {//this.$scrollSpeed * 2;
3859 < 50)<= 93)) { mouseEvent.wheelX = e.wheelX;
3860 < 50)<= 93)) {
3861 < 50)<= 93)) {this.editor._emit(name, mouseEvent);
3862 < 50)<= 93)) {
3863  
3864 < 50)<= 93)) {this.setState = function(state) {
3865 < 50)<= 93)) {this.state = state;
3866 < 50)<= 93)) {
3867  
3868 < 50)<= 93)) {this.captureMouse = function(ev, mouseMoveHandler) {
3869 < 50)<= 93)) {this.x = ev.x;
3870 < 50)<= 93)) {this.y = ev.y;
3871  
3872 < 50)<= 93)) {this.isMousePressed = true;
3873 < 50)<= 93)) {var renderer = this.editor.renderer;
3874 < 50)<= 93)) {if (renderer.$keepTextAreaAtCursor)
3875 < 50)<= 93)) {null;
3876  
3877 < 50)<= 93)) {var self = this;
3878 < 50)<= 93)) {var onMouseMove = function(e) {
3879 < 50)<= 93)) {if (!e) return;
3880 < 50)<= 93)) {if (useragent.isWebKit && !e.which && self.releaseMouse)
3881 < 50)<= 93)) {return self.releaseMouse();
3882  
3883 < 50)<= 93)) {
3884 < 50)<= 93)) {
3885 < 50)<= 93)) {
3886 < 50)<= 93)) {new MouseEvent(e, self.editor);
3887 < 50)<= 93)) {true;
3888 < 50)<= 93)) {
3889  
3890 < 50)<= 93)) {var onCaptureEnd = function(e) {
3891 < 50)<= 93)) {
3892 < 50)<= 93)) {
3893 < 50)<= 93)) {"End"] && self[self.state + "End"](e);
3894 < 50)<= 93)) {"";
3895 < 50)<= 93)) {if (renderer.$keepTextAreaAtCursor == null) {
3896 < 50)<= 93)) {true;
3897 < 50)<= 93)) {
3898 < 50)<= 93)) {
3899 < 50)<= 93)) {false;
3900 < 50)<= 93)) {null;
3901 < 50)<= 93)) {"mouseup", e);
3902 < 50)<= 93)) {
3903  
3904 < 50)<= 93)) {var onCaptureInterval = function() {
3905 < 50)<= 93)) {
3906 < 50)<= 93)) {false;
3907 < 50)<= 93)) {
3908  
3909 < 50)<= 93)) {if (useragent.isOldIE && ev.domEvent.type == "dblclick") {
3910 < 50)<= 93)) {return setTimeout(function() {onCaptureEnd(ev);});
3911 < 50)<= 93)) {
3912  
3913 < 50)<= 93)) {
3914 < 50)<= 93)) {this.editor.container, onMouseMove, onCaptureEnd);
3915 < 50)<= 93)) {var timerId = setInterval(onCaptureInterval, 20);
3916 < 50)<= 93)) {
3917 < 50)<= 93)) {this.releaseMouse = null;
3918 < 50)<= 93)) {this.cancelContextMenu = function() {
3919 < 50)<= 93)) {var stop = function(e) {
3920 < 50)<= 93)) {if (e && e.domEvent && e.domEvent.type != "contextmenu")
3921 < 50)<= 93)) {return;
3922 < 50)<= 93)) {this.editor.off("nativecontextmenu", stop);
3923 < 50)<= 93)) {if (e && e.domEvent)
3924 < 50)<= 93)) {
3925 < 50)<= 93)) {this);
3926 < 50)<= 93)) {
3927 < 50)<= 93)) {this.editor.on("nativecontextmenu", stop);
3928 < 50)<= 93)) {
3929 < 50)<= 93)) {
3930  
3931 < 50)<= 93)) {"mouseHandler", {
3932 < 50)<= 93)) {
3933 < 50)<= 93)) {
3934 < 50)<= 93)) {true},
3935 < 50)<= 93)) {
3936 < 50)<= 93)) {true}
3937 < 50)<= 93)) {
3938  
3939  
3940 < 50)<= 93)) {
3941 < 50)<= 93)) {
3942  
3943 < 50)<= 93)) {"ace/mouse/fold_handler",["require","exports","module"], function(require, exports, module) {
3944 < 50)<= 93)) {"use strict";
3945  
3946 < 50)<= 93)) {function FoldHandler(editor) {
3947  
3948 < 50)<= 93)) {"click", function(e) {
3949 < 50)<= 93)) {var position = e.getDocumentPosition();
3950 < 50)<= 93)) {var session = editor.session;
3951 < 50)<= 93)) {var fold = session.getFoldAt(position.row, position.column, 1);
3952 < 50)<= 93)) {if (fold) {
3953 < 50)<= 93)) {if (e.getAccelKey())
3954 < 50)<= 93)) {
3955 < 50)<= 93)) {else
3956 < 50)<= 93)) {
3957  
3958 < 50)<= 93)) {
3959 < 50)<= 93)) {
3960 < 50)<= 93)) {
3961  
3962 < 50)<= 93)) {"gutterclick", function(e) {
3963 < 50)<= 93)) {var gutterRegion = editor.renderer.$gutterLayer.getRegion(e);
3964  
3965 < 50)<= 93)) {if (gutterRegion == "foldWidgets") {
3966 < 50)<= 93)) {var row = e.getDocumentPosition().row;
3967 < 50)<= 93)) {var session = editor.session;
3968 < 50)<= 93)) {if (session.foldWidgets && session.foldWidgets[row])
3969 < 50)<= 93)) {
3970 < 50)<= 93)) {if (!editor.isFocused())
3971 < 50)<= 93)) {
3972 < 50)<= 93)) {
3973 < 50)<= 93)) {
3974 < 50)<= 93)) {
3975  
3976 < 50)<= 93)) {"gutterdblclick", function(e) {
3977 < 50)<= 93)) {var gutterRegion = editor.renderer.$gutterLayer.getRegion(e);
3978  
3979 < 50)<= 93)) {if (gutterRegion == "foldWidgets") {
3980 < 50)<= 93)) {var row = e.getDocumentPosition().row;
3981 < 50)<= 93)) {var session = editor.session;
3982 < 50)<= 93)) {var data = session.getParentFoldRangeData(row, true);
3983 < 50)<= 93)) {var range = data.range || data.firstRange;
3984  
3985 < 50)<= 93)) {if (range) {
3986 < 50)<= 93)) {
3987 < 50)<= 93)) {var fold = session.getFoldAt(row, session.getLine(row).length, 1);
3988  
3989 < 50)<= 93)) {if (fold) {
3990 < 50)<= 93)) {
3991 < 50)<= 93)) {else {
3992 < 50)<= 93)) {"...", range);
3993 < 50)<= 93)) {
3994 < 50)<= 93)) {
3995 < 50)<= 93)) {
3996 < 50)<= 93)) {
3997 < 50)<= 93)) {
3998 < 50)<= 93)) {
3999 < 50)<= 93)) {
4000  
4001 < 50)<= 93)) {
4002  
4003 < 50)<= 93)) {
4004  
4005 < 50)<= 93)) {"ace/keyboard/keybinding",["require","exports","module","ace/lib/keys","ace/lib/event"], function(require, exports, module) {
4006 < 50)<= 93)) {"use strict";
4007  
4008 < 50)<= 93)) {var keyUtil = require("../lib/keys");
4009 < 50)<= 93)) {var event = require("../lib/event");
4010  
4011 < 50)<= 93)) {var KeyBinding = function(editor) {
4012 < 50)<= 93)) {this.$editor = editor;
4013 < 50)<= 93)) {this.$data = {editor: editor};
4014 < 50)<= 93)) {this.$handlers = [];
4015 < 50)<= 93)) {this.setDefaultHandler(editor.commands);
4016 < 50)<= 93)) {
4017  
4018 < 50)<= 93)) {function() {
4019 < 50)<= 93)) {this.setDefaultHandler = function(kb) {
4020 < 50)<= 93)) {this.removeKeyboardHandler(this.$defaultHandler);
4021 < 50)<= 93)) {this.$defaultHandler = kb;
4022 < 50)<= 93)) {this.addKeyboardHandler(kb, 0);
4023 < 50)<= 93)) {
4024  
4025 < 50)<= 93)) {this.setKeyboardHandler = function(kb) {
4026 < 50)<= 93)) {var h = this.$handlers;
4027 < 50)<= 93)) {if (h[h.length - 1] == kb)
4028 < 50)<= 93)) {return;
4029  
4030 < 50)<= 93)) {while (h[h.length - 1] && h[h.length - 1] != this.$defaultHandler)
4031 < 50)<= 93)) {this.removeKeyboardHandler(h[h.length - 1]);
4032  
4033 < 50)<= 93)) {this.addKeyboardHandler(kb, 1);
4034 < 50)<= 93)) {
4035  
4036 < 50)<= 93)) {this.addKeyboardHandler = function(kb, pos) {
4037 < 50)<= 93)) {if (!kb)
4038 < 50)<= 93)) {return;
4039 < 50)<= 93)) {if (typeof kb == "function" && !kb.handleKeyboard)
4040 < 50)<= 93)) {
4041 < 50)<= 93)) {var i = this.$handlers.indexOf(kb);
4042 < 50)<= 93)) {if (i != -1)
4043 < 50)<= 93)) {this.$handlers.splice(i, 1);
4044  
4045 < 50)<= 93)) {if (pos == undefined)
4046 < 50)<= 93)) {this.$handlers.push(kb);
4047 < 50)<= 93)) {else
4048 < 50)<= 93)) {this.$handlers.splice(pos, 0, kb);
4049  
4050 < 50)<= 93)) {if (i == -1 && kb.attach)
4051 < 50)<= 93)) {this.$editor);
4052 < 50)<= 93)) {
4053  
4054 < 50)<= 93)) {this.removeKeyboardHandler = function(kb) {
4055 < 50)<= 93)) {var i = this.$handlers.indexOf(kb);
4056 < 50)<= 93)) {if (i == -1)
4057 < 50)<= 93)) {return false;
4058 < 50)<= 93)) {this.$handlers.splice(i, 1);
4059 < 50)<= 93)) {this.$editor);
4060 < 50)<= 93)) {return true;
4061 < 50)<= 93)) {
4062  
4063 < 50)<= 93)) {this.getKeyboardHandler = function() {
4064 < 50)<= 93)) {return this.$handlers[this.$handlers.length - 1];
4065 < 50)<= 93)) {
4066  
4067 < 50)<= 93)) {this.getStatusText = function() {
4068 < 50)<= 93)) {var data = this.$data;
4069 < 50)<= 93)) {var editor = data.editor;
4070 < 50)<= 93)) {return this.$handlers.map(function(h) {
4071 < 50)<= 93)) {return h.getStatusText && h.getStatusText(editor, data) || "";
4072 < 50)<= 93)) {" ");
4073 < 50)<= 93)) {
4074  
4075 < 50)<= 93)) {this.$callKeyboardHandlers = function(hashId, keyString, keyCode, e) {
4076 < 50)<= 93)) {var toExecute;
4077 < 50)<= 93)) {var success = false;
4078 < 50)<= 93)) {var commands = this.$editor.commands;
4079  
4080 < 50)<= 93)) {for (var i = this.$handlers.length; i--;) {
4081 < 50)<= 93)) {this.$handlers[i].handleKeyboard(
4082 < 50)<= 93)) {this.$data, hashId, keyString, keyCode, e
4083 < 50)<= 93)) {
4084 < 50)<= 93)) {if (!toExecute || !toExecute.command)
4085 < 50)<= 93)) {continue;
4086 < 50)<= 93)) {if (toExecute.command == "null") {
4087 < 50)<= 93)) {true;
4088 < 50)<= 93)) {else {
4089 < 50)<= 93)) {this.$editor, toExecute.args, e);
4090 < 50)<= 93)) {
4091 < 50)<= 93)) {if (success && e && hashId != -1 &&
4092 < 50)<= 93)) {true && toExecute.command.passEvent != true
4093 < 50)<= 93)) {
4094 < 50)<= 93)) {
4095 < 50)<= 93)) {
4096 < 50)<= 93)) {if (success)
4097 < 50)<= 93)) {break;
4098 < 50)<= 93)) {
4099  
4100 < 50)<= 93)) {if (!success && hashId == -1) {
4101 < 50)<= 93)) {"insertstring"};
4102 < 50)<= 93)) {"insertstring", this.$editor, keyString);
4103 < 50)<= 93)) {
4104  
4105 < 50)<= 93)) {if (success && this.$editor._signal)
4106 < 50)<= 93)) {this.$editor._signal("keyboardActivity", toExecute);
4107  
4108 < 50)<= 93)) {return success;
4109 < 50)<= 93)) {
4110  
4111 < 50)<= 93)) {this.onCommandKey = function(e, hashId, keyCode) {
4112 < 50)<= 93)) {var keyString = keyUtil.keyCodeToString(keyCode);
4113 < 50)<= 93)) {this.$callKeyboardHandlers(hashId, keyString, keyCode, e);
4114 < 50)<= 93)) {
4115  
4116 < 50)<= 93)) {this.onTextInput = function(text) {
4117 < 50)<= 93)) {this.$callKeyboardHandlers(-1, text);
4118 < 50)<= 93)) {
4119  
4120 < 50)<= 93)) {
4121  
4122 < 50)<= 93)) {
4123 < 50)<= 93)) {
4124  
4125 < 50)<= 93)) {"ace/range",["require","exports","module"], function(require, exports, module) {
4126 < 50)<= 93)) {"use strict";
4127 < 50)<= 93)) {var comparePoints = function(p1, p2) {
4128 < 50)<= 93)) {return p1.row - p2.row || p1.column - p2.column;
4129 < 50)<= 93)) {
4130 < 50)<= 93)) {var Range = function(startRow, startColumn, endRow, endColumn) {
4131 < 50)<= 93)) {this.start = {
4132 < 50)<= 93)) {
4133 < 50)<= 93)) {
4134 < 50)<= 93)) {
4135  
4136 < 50)<= 93)) {this.end = {
4137 < 50)<= 93)) {
4138 < 50)<= 93)) {
4139 < 50)<= 93)) {
4140 < 50)<= 93)) {
4141  
4142 < 50)<= 93)) {function() {
4143 < 50)<= 93)) {this.isEqual = function(range) {
4144 < 50)<= 93)) {return this.start.row === range.start.row &&
4145 < 50)<= 93)) {this.end.row === range.end.row &&
4146 < 50)<= 93)) {this.start.column === range.start.column &&
4147 < 50)<= 93)) {this.end.column === range.end.column;
4148 < 50)<= 93)) {
4149 < 50)<= 93)) {this.toString = function() {
4150 < 50)<= 93)) {return ("Range: [" + this.start.row + "/" + this.start.column +
4151 < 50)<= 93)) {"] -> [" + this.end.row + "/" + this.end.column + "]");
4152 < 50)<= 93)) {
4153  
4154 < 50)<= 93)) {this.contains = function(row, column) {
4155 < 50)<= 93)) {return this.compare(row, column) == 0;
4156 < 50)<= 93)) {
4157 < 50)<= 93)) {this.compareRange = function(range) {
4158 < 50)<= 93)) {var cmp,
4159 < 50)<= 93)) {
4160 < 50)<= 93)) {
4161  
4162 < 50)<= 93)) {this.compare(end.row, end.column);
4163 < 50)<= 93)) {if (cmp == 1) {
4164 < 50)<= 93)) {this.compare(start.row, start.column);
4165 < 50)<= 93)) {if (cmp == 1) {
4166 < 50)<= 93)) {return 2;
4167 < 50)<= 93)) {else if (cmp == 0) {
4168 < 50)<= 93)) {return 1;
4169 < 50)<= 93)) {else {
4170 < 50)<= 93)) {return 0;
4171 < 50)<= 93)) {
4172 < 50)<= 93)) {else if (cmp == -1) {
4173 < 50)<= 93)) {return -2;
4174 < 50)<= 93)) {else {
4175 < 50)<= 93)) {this.compare(start.row, start.column);
4176 < 50)<= 93)) {if (cmp == -1) {
4177 < 50)<= 93)) {return -1;
4178 < 50)<= 93)) {else if (cmp == 1) {
4179 < 50)<= 93)) {return 42;
4180 < 50)<= 93)) {else {
4181 < 50)<= 93)) {return 0;
4182 < 50)<= 93)) {
4183 < 50)<= 93)) {
4184 < 50)<= 93)) {
4185 < 50)<= 93)) {this.comparePoint = function(p) {
4186 < 50)<= 93)) {return this.compare(p.row, p.column);
4187 < 50)<= 93)) {
4188 < 50)<= 93)) {this.containsRange = function(range) {
4189 < 50)<= 93)) {return this.comparePoint(range.start) == 0 && this.comparePoint(range.end) == 0;
4190 < 50)<= 93)) {
4191 < 50)<= 93)) {this.intersects = function(range) {
4192 < 50)<= 93)) {var cmp = this.compareRange(range);
4193 < 50)<= 93)) {return (cmp == -1 || cmp == 0 || cmp == 1);
4194 < 50)<= 93)) {
4195 < 50)<= 93)) {this.isEnd = function(row, column) {
4196 < 50)<= 93)) {return this.end.row == row && this.end.column == column;
4197 < 50)<= 93)) {
4198 < 50)<= 93)) {this.isStart = function(row, column) {
4199 < 50)<= 93)) {return this.start.row == row && this.start.column == column;
4200 < 50)<= 93)) {
4201 < 50)<= 93)) {this.setStart = function(row, column) {
4202 < 50)<= 93)) {if (typeof row == "object") {
4203 < 50)<= 93)) {this.start.column = row.column;
4204 < 50)<= 93)) {this.start.row = row.row;
4205 < 50)<= 93)) {else {
4206 < 50)<= 93)) {this.start.row = row;
4207 < 50)<= 93)) {this.start.column = column;
4208 < 50)<= 93)) {
4209 < 50)<= 93)) {
4210 < 50)<= 93)) {this.setEnd = function(row, column) {
4211 < 50)<= 93)) {if (typeof row == "object") {
4212 < 50)<= 93)) {this.end.column = row.column;
4213 < 50)<= 93)) {this.end.row = row.row;
4214 < 50)<= 93)) {else {
4215 < 50)<= 93)) {this.end.row = row;
4216 < 50)<= 93)) {this.end.column = column;
4217 < 50)<= 93)) {
4218 < 50)<= 93)) {
4219 < 50)<= 93)) {this.inside = function(row, column) {
4220 < 50)<= 93)) {if (this.compare(row, column) == 0) {
4221 < 50)<= 93)) {if (this.isEnd(row, column) || this.isStart(row, column)) {
4222 < 50)<= 93)) {return false;
4223 < 50)<= 93)) {else {
4224 < 50)<= 93)) {return true;
4225 < 50)<= 93)) {
4226 < 50)<= 93)) {
4227 < 50)<= 93)) {return false;
4228 < 50)<= 93)) {
4229 < 50)<= 93)) {this.insideStart = function(row, column) {
4230 < 50)<= 93)) {if (this.compare(row, column) == 0) {
4231 < 50)<= 93)) {if (this.isEnd(row, column)) {
4232 < 50)<= 93)) {return false;
4233 < 50)<= 93)) {else {
4234 < 50)<= 93)) {return true;
4235 < 50)<= 93)) {
4236 < 50)<= 93)) {
4237 < 50)<= 93)) {return false;
4238 < 50)<= 93)) {
4239 < 50)<= 93)) {this.insideEnd = function(row, column) {
4240 < 50)<= 93)) {if (this.compare(row, column) == 0) {
4241 < 50)<= 93)) {if (this.isStart(row, column)) {
4242 < 50)<= 93)) {return false;
4243 < 50)<= 93)) {else {
4244 < 50)<= 93)) {return true;
4245 < 50)<= 93)) {
4246 < 50)<= 93)) {
4247 < 50)<= 93)) {return false;
4248 < 50)<= 93)) {
4249 < 50)<= 93)) {this.compare = function(row, column) {
4250 < 50)<= 93)) {if (!this.isMultiLine()) {
4251 < 50)<= 93)) {if (row === this.start.row) {
4252 < 50)<= 93)) {return column < this.start.column ? -1 : (column > this.end.column ? 1 : 0);
4253 < 50)<= 93)) {
4254 < 50)<= 93)) {
4255  
4256 < 50)<= 93)) {if (row < this.start.row)
4257 < 50)<= 93)) {return -1;
4258  
4259 < 50)<= 93)) {if (row > this.end.row)
4260 < 50)<= 93)) {return 1;
4261  
4262 < 50)<= 93)) {if (this.start.row === row)
4263 < 50)<= 93)) {return column >= this.start.column ? 0 : -1;
4264  
4265 < 50)<= 93)) {if (this.end.row === row)
4266 < 50)<= 93)) {return column <= this.end.column ? 0 : 1;
4267  
4268 < 50)<= 93)) {return 0;
4269 < 50)<= 93)) {
4270 < 50)<= 93)) {this.compareStart = function(row, column) {
4271 < 50)<= 93)) {if (this.start.row == row && this.start.column == column) {
4272 < 50)<= 93)) {return -1;
4273 < 50)<= 93)) {else {
4274 < 50)<= 93)) {return this.compare(row, column);
4275 < 50)<= 93)) {
4276 < 50)<= 93)) {
4277 < 50)<= 93)) {this.compareEnd = function(row, column) {
4278 < 50)<= 93)) {if (this.end.row == row && this.end.column == column) {
4279 < 50)<= 93)) {return 1;
4280 < 50)<= 93)) {else {
4281 < 50)<= 93)) {return this.compare(row, column);
4282 < 50)<= 93)) {
4283 < 50)<= 93)) {
4284 < 50)<= 93)) {this.compareInside = function(row, column) {
4285 < 50)<= 93)) {if (this.end.row == row && this.end.column == column) {
4286 < 50)<= 93)) {return 1;
4287 < 50)<= 93)) {else if (this.start.row == row && this.start.column == column) {
4288 < 50)<= 93)) {return -1;
4289 < 50)<= 93)) {else {
4290 < 50)<= 93)) {return this.compare(row, column);
4291 < 50)<= 93)) {
4292 < 50)<= 93)) {
4293 < 50)<= 93)) {this.clipRows = function(firstRow, lastRow) {
4294 < 50)<= 93)) {if (this.end.row > lastRow)
4295 < 50)<= 93)) {var end = {row: lastRow + 1, column: 0};
4296 < 50)<= 93)) {else if (this.end.row < firstRow)
4297 < 50)<= 93)) {var end = {row: firstRow, column: 0};
4298  
4299 < 50)<= 93)) {if (this.start.row > lastRow)
4300 < 50)<= 93)) {var start = {row: lastRow + 1, column: 0};
4301 < 50)<= 93)) {else if (this.start.row < firstRow)
4302 < 50)<= 93)) {var start = {row: firstRow, column: 0};
4303  
4304 < 50)<= 93)) {return Range.fromPoints(start || this.start, end || this.end);
4305 < 50)<= 93)) {
4306 < 50)<= 93)) {this.extend = function(row, column) {
4307 < 50)<= 93)) {var cmp = this.compare(row, column);
4308  
4309 < 50)<= 93)) {if (cmp == 0)
4310 < 50)<= 93)) {return this;
4311 < 50)<= 93)) {else if (cmp == -1)
4312 < 50)<= 93)) {var start = {row: row, column: column};
4313 < 50)<= 93)) {else
4314 < 50)<= 93)) {var end = {row: row, column: column};
4315  
4316 < 50)<= 93)) {return Range.fromPoints(start || this.start, end || this.end);
4317 < 50)<= 93)) {
4318  
4319 < 50)<= 93)) {this.isEmpty = function() {
4320 < 50)<= 93)) {return (this.start.row === this.end.row && this.start.column === this.end.column);
4321 < 50)<= 93)) {
4322 < 50)<= 93)) {this.isMultiLine = function() {
4323 < 50)<= 93)) {return (this.start.row !== this.end.row);
4324 < 50)<= 93)) {
4325 < 50)<= 93)) {this.clone = function() {
4326 < 50)<= 93)) {return Range.fromPoints(this.start, this.end);
4327 < 50)<= 93)) {
4328 < 50)<= 93)) {this.collapseRows = function() {
4329 < 50)<= 93)) {if (this.end.column == 0)
4330 < 50)<= 93)) {return new Range(this.start.row, 0, Math.max(this.start.row, this.end.row-1), 0)
4331 < 50)<= 93)) {else
4332 < 50)<= 93)) {return new Range(this.start.row, 0, this.end.row, 0)
4333 < 50)<= 93)) {
4334 < 50)<= 93)) {this.toScreenRange = function(session) {
4335 < 50)<= 93)) {var screenPosStart = session.documentToScreenPosition(this.start);
4336 < 50)<= 93)) {var screenPosEnd = session.documentToScreenPosition(this.end);
4337  
4338 < 50)<= 93)) {return new Range(
4339 < 50)<= 93)) {
4340 < 50)<= 93)) {
4341 < 50)<= 93)) {
4342 < 50)<= 93)) {
4343 < 50)<= 93)) {this.moveBy = function(row, column) {
4344 < 50)<= 93)) {this.start.row += row;
4345 < 50)<= 93)) {this.start.column += column;
4346 < 50)<= 93)) {this.end.row += row;
4347 < 50)<= 93)) {this.end.column += column;
4348 < 50)<= 93)) {
4349  
4350 < 50)<= 93)) {
4351 < 50)<= 93)) {function(start, end) {
4352 < 50)<= 93)) {return new Range(start.row, start.column, end.row, end.column);
4353 < 50)<= 93)) {
4354 < 50)<= 93)) {
4355  
4356 < 50)<= 93)) {function(p1, p2) {
4357 < 50)<= 93)) {return p1.row - p2.row || p1.column - p2.column;
4358 < 50)<= 93)) {
4359  
4360  
4361 < 50)<= 93)) {
4362 < 50)<= 93)) {
4363  
4364 < 50)<= 93)) {"ace/selection",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/lib/event_emitter","ace/range"], function(require, exports, module) {
4365 < 50)<= 93)) {"use strict";
4366  
4367 < 50)<= 93)) {var oop = require("./lib/oop");
4368 < 50)<= 93)) {var lang = require("./lib/lang");
4369 < 50)<= 93)) {var EventEmitter = require("./lib/event_emitter").EventEmitter;
4370 < 50)<= 93)) {var Range = require("./range").Range;
4371 < 50)<= 93)) {var Selection = function(session) {
4372 < 50)<= 93)) {this.session = session;
4373 < 50)<= 93)) {this.doc = session.getDocument();
4374  
4375 < 50)<= 93)) {this.clearSelection();
4376 < 50)<= 93)) {this.lead = this.selectionLead = this.doc.createAnchor(0, 0);
4377 < 50)<= 93)) {this.anchor = this.selectionAnchor = this.doc.createAnchor(0, 0);
4378  
4379 < 50)<= 93)) {var self = this;
4380 < 50)<= 93)) {this.lead.on("change", function(e) {
4381 < 50)<= 93)) {"changeCursor");
4382 < 50)<= 93)) {if (!self.$isEmpty)
4383 < 50)<= 93)) {"changeSelection");
4384 < 50)<= 93)) {if (!self.$keepDesiredColumnOnChange && e.old.column != e.value.column)
4385 < 50)<= 93)) {null;
4386 < 50)<= 93)) {
4387  
4388 < 50)<= 93)) {this.selectionAnchor.on("change", function() {
4389 < 50)<= 93)) {if (!self.$isEmpty)
4390 < 50)<= 93)) {"changeSelection");
4391 < 50)<= 93)) {
4392 < 50)<= 93)) {
4393  
4394 < 50)<= 93)) {function() {
4395  
4396 < 50)<= 93)) {this, EventEmitter);
4397 < 50)<= 93)) {this.isEmpty = function() {
4398 < 50)<= 93)) {return (this.$isEmpty || (
4399 < 50)<= 93)) {this.anchor.row == this.lead.row &&
4400 < 50)<= 93)) {this.anchor.column == this.lead.column
4401 < 50)<= 93)) {
4402 < 50)<= 93)) {
4403 < 50)<= 93)) {this.isMultiLine = function() {
4404 < 50)<= 93)) {if (this.isEmpty()) {
4405 < 50)<= 93)) {return false;
4406 < 50)<= 93)) {
4407  
4408 < 50)<= 93)) {return this.getRange().isMultiLine();
4409 < 50)<= 93)) {
4410 < 50)<= 93)) {this.getCursor = function() {
4411 < 50)<= 93)) {return this.lead.getPosition();
4412 < 50)<= 93)) {
4413 < 50)<= 93)) {this.setSelectionAnchor = function(row, column) {
4414 < 50)<= 93)) {this.anchor.setPosition(row, column);
4415  
4416 < 50)<= 93)) {if (this.$isEmpty) {
4417 < 50)<= 93)) {this.$isEmpty = false;
4418 < 50)<= 93)) {this._emit("changeSelection");
4419 < 50)<= 93)) {
4420 < 50)<= 93)) {
4421 < 50)<= 93)) {this.getSelectionAnchor = function() {
4422 < 50)<= 93)) {if (this.$isEmpty)
4423 < 50)<= 93)) {return this.getSelectionLead();
4424 < 50)<= 93)) {else
4425 < 50)<= 93)) {return this.anchor.getPosition();
4426 < 50)<= 93)) {
4427 < 50)<= 93)) {this.getSelectionLead = function() {
4428 < 50)<= 93)) {return this.lead.getPosition();
4429 < 50)<= 93)) {
4430 < 50)<= 93)) {this.shiftSelection = function(columns) {
4431 < 50)<= 93)) {if (this.$isEmpty) {
4432 < 50)<= 93)) {this.moveCursorTo(this.lead.row, this.lead.column + columns);
4433 < 50)<= 93)) {return;
4434 < 50)<= 93)) {
4435  
4436 < 50)<= 93)) {var anchor = this.getSelectionAnchor();
4437 < 50)<= 93)) {var lead = this.getSelectionLead();
4438  
4439 < 50)<= 93)) {var isBackwards = this.isBackwards();
4440  
4441 < 50)<= 93)) {if (!isBackwards || anchor.column !== 0)
4442 < 50)<= 93)) {this.setSelectionAnchor(anchor.row, anchor.column + columns);
4443  
4444 < 50)<= 93)) {if (isBackwards || lead.column !== 0) {
4445 < 50)<= 93)) {this.$moveSelection(function() {
4446 < 50)<= 93)) {this.moveCursorTo(lead.row, lead.column + columns);
4447 < 50)<= 93)) {
4448 < 50)<= 93)) {
4449 < 50)<= 93)) {
4450 < 50)<= 93)) {this.isBackwards = function() {
4451 < 50)<= 93)) {var anchor = this.anchor;
4452 < 50)<= 93)) {var lead = this.lead;
4453 < 50)<= 93)) {return (anchor.row > lead.row || (anchor.row == lead.row && anchor.column > lead.column));
4454 < 50)<= 93)) {
4455 < 50)<= 93)) {this.getRange = function() {
4456 < 50)<= 93)) {var anchor = this.anchor;
4457 < 50)<= 93)) {var lead = this.lead;
4458  
4459 < 50)<= 93)) {if (this.isEmpty())
4460 < 50)<= 93)) {return Range.fromPoints(lead, lead);
4461  
4462 < 50)<= 93)) {if (this.isBackwards()) {
4463 < 50)<= 93)) {return Range.fromPoints(lead, anchor);
4464 < 50)<= 93)) {
4465 < 50)<= 93)) {else {
4466 < 50)<= 93)) {return Range.fromPoints(anchor, lead);
4467 < 50)<= 93)) {
4468 < 50)<= 93)) {
4469 < 50)<= 93)) {this.clearSelection = function() {
4470 < 50)<= 93)) {if (!this.$isEmpty) {
4471 < 50)<= 93)) {this.$isEmpty = true;
4472 < 50)<= 93)) {this._emit("changeSelection");
4473 < 50)<= 93)) {
4474 < 50)<= 93)) {
4475 < 50)<= 93)) {this.selectAll = function() {
4476 < 50)<= 93)) {var lastRow = this.doc.getLength() - 1;
4477 < 50)<= 93)) {this.setSelectionAnchor(0, 0);
4478 < 50)<= 93)) {this.moveCursorTo(lastRow, this.doc.getLine(lastRow).length);
4479 < 50)<= 93)) {
4480 < 50)<= 93)) {this.setRange =
4481 < 50)<= 93)) {this.setSelectionRange = function(range, reverse) {
4482 < 50)<= 93)) {if (reverse) {
4483 < 50)<= 93)) {this.setSelectionAnchor(range.end.row, range.end.column);
4484 < 50)<= 93)) {this.selectTo(range.start.row, range.start.column);
4485 < 50)<= 93)) {else {
4486 < 50)<= 93)) {this.setSelectionAnchor(range.start.row, range.start.column);
4487 < 50)<= 93)) {this.selectTo(range.end.row, range.end.column);
4488 < 50)<= 93)) {
4489 < 50)<= 93)) {if (this.getRange().isEmpty())
4490 < 50)<= 93)) {this.$isEmpty = true;
4491 < 50)<= 93)) {this.$desiredColumn = null;
4492 < 50)<= 93)) {
4493  
4494 < 50)<= 93)) {this.$moveSelection = function(mover) {
4495 < 50)<= 93)) {var lead = this.lead;
4496 < 50)<= 93)) {if (this.$isEmpty)
4497 < 50)<= 93)) {this.setSelectionAnchor(lead.row, lead.column);
4498  
4499 < 50)<= 93)) {this);
4500 < 50)<= 93)) {
4501 < 50)<= 93)) {this.selectTo = function(row, column) {
4502 < 50)<= 93)) {this.$moveSelection(function() {
4503 < 50)<= 93)) {this.moveCursorTo(row, column);
4504 < 50)<= 93)) {
4505 < 50)<= 93)) {
4506 < 50)<= 93)) {this.selectToPosition = function(pos) {
4507 < 50)<= 93)) {this.$moveSelection(function() {
4508 < 50)<= 93)) {this.moveCursorToPosition(pos);
4509 < 50)<= 93)) {
4510 < 50)<= 93)) {
4511 < 50)<= 93)) {this.moveTo = function(row, column) {
4512 < 50)<= 93)) {this.clearSelection();
4513 < 50)<= 93)) {this.moveCursorTo(row, column);
4514 < 50)<= 93)) {
4515 < 50)<= 93)) {this.moveToPosition = function(pos) {
4516 < 50)<= 93)) {this.clearSelection();
4517 < 50)<= 93)) {this.moveCursorToPosition(pos);
4518 < 50)<= 93)) {
4519 < 50)<= 93)) {this.selectUp = function() {
4520 < 50)<= 93)) {this.$moveSelection(this.moveCursorUp);
4521 < 50)<= 93)) {
4522 < 50)<= 93)) {this.selectDown = function() {
4523 < 50)<= 93)) {this.$moveSelection(this.moveCursorDown);
4524 < 50)<= 93)) {
4525 < 50)<= 93)) {this.selectRight = function() {
4526 < 50)<= 93)) {this.$moveSelection(this.moveCursorRight);
4527 < 50)<= 93)) {
4528 < 50)<= 93)) {this.selectLeft = function() {
4529 < 50)<= 93)) {this.$moveSelection(this.moveCursorLeft);
4530 < 50)<= 93)) {
4531 < 50)<= 93)) {this.selectLineStart = function() {
4532 < 50)<= 93)) {this.$moveSelection(this.moveCursorLineStart);
4533 < 50)<= 93)) {
4534 < 50)<= 93)) {this.selectLineEnd = function() {
4535 < 50)<= 93)) {this.$moveSelection(this.moveCursorLineEnd);
4536 < 50)<= 93)) {
4537 < 50)<= 93)) {this.selectFileEnd = function() {
4538 < 50)<= 93)) {this.$moveSelection(this.moveCursorFileEnd);
4539 < 50)<= 93)) {
4540 < 50)<= 93)) {this.selectFileStart = function() {
4541 < 50)<= 93)) {this.$moveSelection(this.moveCursorFileStart);
4542 < 50)<= 93)) {
4543 < 50)<= 93)) {this.selectWordRight = function() {
4544 < 50)<= 93)) {this.$moveSelection(this.moveCursorWordRight);
4545 < 50)<= 93)) {
4546 < 50)<= 93)) {this.selectWordLeft = function() {
4547 < 50)<= 93)) {this.$moveSelection(this.moveCursorWordLeft);
4548 < 50)<= 93)) {
4549 < 50)<= 93)) {this.getWordRange = function(row, column) {
4550 < 50)<= 93)) {if (typeof column == "undefined") {
4551 < 50)<= 93)) {var cursor = row || this.lead;
4552 < 50)<= 93)) {
4553 < 50)<= 93)) {
4554 < 50)<= 93)) {
4555 < 50)<= 93)) {return this.session.getWordRange(row, column);
4556 < 50)<= 93)) {
4557 < 50)<= 93)) {this.selectWord = function() {
4558 < 50)<= 93)) {this.setSelectionRange(this.getWordRange());
4559 < 50)<= 93)) {
4560 < 50)<= 93)) {this.selectAWord = function() {
4561 < 50)<= 93)) {var cursor = this.getCursor();
4562 < 50)<= 93)) {var range = this.session.getAWordRange(cursor.row, cursor.column);
4563 < 50)<= 93)) {this.setSelectionRange(range);
4564 < 50)<= 93)) {
4565  
4566 < 50)<= 93)) {this.getLineRange = function(row, excludeLastChar) {
4567 < 50)<= 93)) {var rowStart = typeof row == "number" ? row : this.lead.row;
4568 < 50)<= 93)) {var rowEnd;
4569  
4570 < 50)<= 93)) {var foldLine = this.session.getFoldLine(rowStart);
4571 < 50)<= 93)) {if (foldLine) {
4572 < 50)<= 93)) {
4573 < 50)<= 93)) {
4574 < 50)<= 93)) {else {
4575 < 50)<= 93)) {
4576 < 50)<= 93)) {
4577 < 50)<= 93)) {if (excludeLastChar === true)
4578 < 50)<= 93)) {return new Range(rowStart, 0, rowEnd, this.session.getLine(rowEnd).length);
4579 < 50)<= 93)) {else
4580 < 50)<= 93)) {return new Range(rowStart, 0, rowEnd + 1, 0);
4581 < 50)<= 93)) {
4582 < 50)<= 93)) {this.selectLine = function() {
4583 < 50)<= 93)) {this.setSelectionRange(this.getLineRange());
4584 < 50)<= 93)) {
4585 < 50)<= 93)) {this.moveCursorUp = function() {
4586 < 50)<= 93)) {this.moveCursorBy(-1, 0);
4587 < 50)<= 93)) {
4588 < 50)<= 93)) {this.moveCursorDown = function() {
4589 < 50)<= 93)) {this.moveCursorBy(1, 0);
4590 < 50)<= 93)) {
4591 < 50)<= 93)) {this.moveCursorLeft = function() {
4592 < 50)<= 93)) {var cursor = this.lead.getPosition(),
4593 < 50)<= 93)) {
4594  
4595 < 50)<= 93)) {if (fold = this.session.getFoldAt(cursor.row, cursor.column, -1)) {
4596 < 50)<= 93)) {this.moveCursorTo(fold.start.row, fold.start.column);
4597 < 50)<= 93)) {else if (cursor.column === 0) {
4598 < 50)<= 93)) {if (cursor.row > 0) {
4599 < 50)<= 93)) {this.moveCursorTo(cursor.row - 1, this.doc.getLine(cursor.row - 1).length);
4600 < 50)<= 93)) {
4601 < 50)<= 93)) {
4602 < 50)<= 93)) {else {
4603 < 50)<= 93)) {var tabSize = this.session.getTabSize();
4604 < 50)<= 93)) {if (this.session.isTabStop(cursor) && this.doc.getLine(cursor.row).slice(cursor.column-tabSize, cursor.column).split(" ").length-1 == tabSize)
4605 < 50)<= 93)) {this.moveCursorBy(0, -tabSize);
4606 < 50)<= 93)) {else
4607 < 50)<= 93)) {this.moveCursorBy(0, -1);
4608 < 50)<= 93)) {
4609 < 50)<= 93)) {
4610 < 50)<= 93)) {this.moveCursorRight = function() {
4611 < 50)<= 93)) {var cursor = this.lead.getPosition(),
4612 < 50)<= 93)) {
4613 < 50)<= 93)) {if (fold = this.session.getFoldAt(cursor.row, cursor.column, 1)) {
4614 < 50)<= 93)) {this.moveCursorTo(fold.end.row, fold.end.column);
4615 < 50)<= 93)) {
4616 < 50)<= 93)) {else if (this.lead.column == this.doc.getLine(this.lead.row).length) {
4617 < 50)<= 93)) {if (this.lead.row < this.doc.getLength() - 1) {
4618 < 50)<= 93)) {this.moveCursorTo(this.lead.row + 1, 0);
4619 < 50)<= 93)) {
4620 < 50)<= 93)) {
4621 < 50)<= 93)) {else {
4622 < 50)<= 93)) {var tabSize = this.session.getTabSize();
4623 < 50)<= 93)) {var cursor = this.lead;
4624 < 50)<= 93)) {if (this.session.isTabStop(cursor) && this.doc.getLine(cursor.row).slice(cursor.column, cursor.column+tabSize).split(" ").length-1 == tabSize)
4625 < 50)<= 93)) {this.moveCursorBy(0, tabSize);
4626 < 50)<= 93)) {else
4627 < 50)<= 93)) {this.moveCursorBy(0, 1);
4628 < 50)<= 93)) {
4629 < 50)<= 93)) {
4630 < 50)<= 93)) {this.moveCursorLineStart = function() {
4631 < 50)<= 93)) {var row = this.lead.row;
4632 < 50)<= 93)) {var column = this.lead.column;
4633 < 50)<= 93)) {var screenRow = this.session.documentToScreenRow(row, column);
4634 < 50)<= 93)) {var firstColumnPosition = this.session.screenToDocumentPosition(screenRow, 0);
4635 < 50)<= 93)) {var beforeCursor = this.session.getDisplayLine(
4636 < 50)<= 93)) {null, firstColumnPosition.row,
4637 < 50)<= 93)) {
4638 < 50)<= 93)) {
4639  
4640 < 50)<= 93)) {var leadingSpace = beforeCursor.match(/^\s*/);
4641 < 50)<= 93)) {if (leadingSpace[0].length != column && !this.session.$useEmacsStyleLineStart)
4642 < 50)<= 93)) {
4643 < 50)<= 93)) {this.moveCursorToPosition(firstColumnPosition);
4644 < 50)<= 93)) {
4645 < 50)<= 93)) {this.moveCursorLineEnd = function() {
4646 < 50)<= 93)) {var lead = this.lead;
4647 < 50)<= 93)) {var lineEnd = this.session.getDocumentLastRowColumnPosition(lead.row, lead.column);
4648 < 50)<= 93)) {if (this.lead.column == lineEnd.column) {
4649 < 50)<= 93)) {var line = this.session.getLine(lineEnd.row);
4650 < 50)<= 93)) {if (lineEnd.column == line.length) {
4651 < 50)<= 93)) {var textEnd = line.search(/\s+$/);
4652 < 50)<= 93)) {if (textEnd > 0)
4653 < 50)<= 93)) {
4654 < 50)<= 93)) {
4655 < 50)<= 93)) {
4656  
4657 < 50)<= 93)) {this.moveCursorTo(lineEnd.row, lineEnd.column);
4658 < 50)<= 93)) {
4659 < 50)<= 93)) {this.moveCursorFileEnd = function() {
4660 < 50)<= 93)) {var row = this.doc.getLength() - 1;
4661 < 50)<= 93)) {var column = this.doc.getLine(row).length;
4662 < 50)<= 93)) {this.moveCursorTo(row, column);
4663 < 50)<= 93)) {
4664 < 50)<= 93)) {this.moveCursorFileStart = function() {
4665 < 50)<= 93)) {this.moveCursorTo(0, 0);
4666 < 50)<= 93)) {
4667 < 50)<= 93)) {this.moveCursorLongWordRight = function() {
4668 < 50)<= 93)) {var row = this.lead.row;
4669 < 50)<= 93)) {var column = this.lead.column;
4670 < 50)<= 93)) {var line = this.doc.getLine(row);
4671 < 50)<= 93)) {var rightOfCursor = line.substring(column);
4672  
4673 < 50)<= 93)) {var match;
4674 < 50)<= 93)) {this.session.nonTokenRe.lastIndex = 0;
4675 < 50)<= 93)) {this.session.tokenRe.lastIndex = 0;
4676 < 50)<= 93)) {var fold = this.session.getFoldAt(row, column, 1);
4677 < 50)<= 93)) {if (fold) {
4678 < 50)<= 93)) {this.moveCursorTo(fold.end.row, fold.end.column);
4679 < 50)<= 93)) {return;
4680 < 50)<= 93)) {
4681 < 50)<= 93)) {if (match = this.session.nonTokenRe.exec(rightOfCursor)) {
4682 < 50)<= 93)) {this.session.nonTokenRe.lastIndex;
4683 < 50)<= 93)) {this.session.nonTokenRe.lastIndex = 0;
4684 < 50)<= 93)) {
4685 < 50)<= 93)) {
4686 < 50)<= 93)) {if (column >= line.length) {
4687 < 50)<= 93)) {this.moveCursorTo(row, line.length);
4688 < 50)<= 93)) {this.moveCursorRight();
4689 < 50)<= 93)) {if (row < this.doc.getLength() - 1)
4690 < 50)<= 93)) {this.moveCursorWordRight();
4691 < 50)<= 93)) {return;
4692 < 50)<= 93)) {
4693 < 50)<= 93)) {if (match = this.session.tokenRe.exec(rightOfCursor)) {
4694 < 50)<= 93)) {this.session.tokenRe.lastIndex;
4695 < 50)<= 93)) {this.session.tokenRe.lastIndex = 0;
4696 < 50)<= 93)) {
4697  
4698 < 50)<= 93)) {this.moveCursorTo(row, column);
4699 < 50)<= 93)) {
4700 < 50)<= 93)) {this.moveCursorLongWordLeft = function() {
4701 < 50)<= 93)) {var row = this.lead.row;
4702 < 50)<= 93)) {var column = this.lead.column;
4703 < 50)<= 93)) {var fold;
4704 < 50)<= 93)) {if (fold = this.session.getFoldAt(row, column, -1)) {
4705 < 50)<= 93)) {this.moveCursorTo(fold.start.row, fold.start.column);
4706 < 50)<= 93)) {return;
4707 < 50)<= 93)) {
4708  
4709 < 50)<= 93)) {var str = this.session.getFoldStringAt(row, column, -1);
4710 < 50)<= 93)) {if (str == null) {
4711 < 50)<= 93)) {this.doc.getLine(row).substring(0, column);
4712 < 50)<= 93)) {
4713  
4714 < 50)<= 93)) {var leftOfCursor = lang.stringReverse(str);
4715 < 50)<= 93)) {var match;
4716 < 50)<= 93)) {this.session.nonTokenRe.lastIndex = 0;
4717 < 50)<= 93)) {this.session.tokenRe.lastIndex = 0;
4718 < 50)<= 93)) {if (match = this.session.nonTokenRe.exec(leftOfCursor)) {
4719 < 50)<= 93)) {this.session.nonTokenRe.lastIndex;
4720 < 50)<= 93)) {this.session.nonTokenRe.lastIndex);
4721 < 50)<= 93)) {this.session.nonTokenRe.lastIndex = 0;
4722 < 50)<= 93)) {
4723 < 50)<= 93)) {if (column <= 0) {
4724 < 50)<= 93)) {this.moveCursorTo(row, 0);
4725 < 50)<= 93)) {this.moveCursorLeft();
4726 < 50)<= 93)) {if (row > 0)
4727 < 50)<= 93)) {this.moveCursorWordLeft();
4728 < 50)<= 93)) {return;
4729 < 50)<= 93)) {
4730 < 50)<= 93)) {if (match = this.session.tokenRe.exec(leftOfCursor)) {
4731 < 50)<= 93)) {this.session.tokenRe.lastIndex;
4732 < 50)<= 93)) {this.session.tokenRe.lastIndex = 0;
4733 < 50)<= 93)) {
4734  
4735 < 50)<= 93)) {this.moveCursorTo(row, column);
4736 < 50)<= 93)) {
4737  
4738 < 50)<= 93)) {this.$shortWordEndIndex = function(rightOfCursor) {
4739 < 50)<= 93)) {var match, index = 0, ch;
4740 < 50)<= 93)) {var whitespaceRe = /\s/;
4741 < 50)<= 93)) {var tokenRe = this.session.tokenRe;
4742  
4743 < 50)<= 93)) {
4744 < 50)<= 93)) {if (match = this.session.tokenRe.exec(rightOfCursor)) {
4745 < 50)<= 93)) {this.session.tokenRe.lastIndex;
4746 < 50)<= 93)) {else {
4747 < 50)<= 93)) {while ((ch = rightOfCursor[index]) && whitespaceRe.test(ch))
4748 < 50)<= 93)) {
4749  
4750 < 50)<= 93)) {if (index < 1) {
4751 < 50)<= 93)) {
4752 < 50)<= 93)) {while ((ch = rightOfCursor[index]) && !tokenRe.test(ch)) {
4753 < 50)<= 93)) {
4754 < 50)<= 93)) {
4755 < 50)<= 93)) {if (whitespaceRe.test(ch)) {
4756 < 50)<= 93)) {if (index > 2) {
4757 < 50)<= 93)) {
4758 < 50)<= 93)) {break;
4759 < 50)<= 93)) {else {
4760 < 50)<= 93)) {while ((ch = rightOfCursor[index]) && whitespaceRe.test(ch))
4761 < 50)<= 93)) {
4762 < 50)<= 93)) {if (index > 2)
4763 < 50)<= 93)) {break;
4764 < 50)<= 93)) {
4765 < 50)<= 93)) {
4766 < 50)<= 93)) {
4767 < 50)<= 93)) {
4768 < 50)<= 93)) {
4769 < 50)<= 93)) {
4770  
4771 < 50)<= 93)) {return index;
4772 < 50)<= 93)) {
4773  
4774 < 50)<= 93)) {this.moveCursorShortWordRight = function() {
4775 < 50)<= 93)) {var row = this.lead.row;
4776 < 50)<= 93)) {var column = this.lead.column;
4777 < 50)<= 93)) {var line = this.doc.getLine(row);
4778 < 50)<= 93)) {var rightOfCursor = line.substring(column);
4779  
4780 < 50)<= 93)) {var fold = this.session.getFoldAt(row, column, 1);
4781 < 50)<= 93)) {if (fold)
4782 < 50)<= 93)) {return this.moveCursorTo(fold.end.row, fold.end.column);
4783  
4784 < 50)<= 93)) {if (column == line.length) {
4785 < 50)<= 93)) {var l = this.doc.getLength();
4786 < 50)<= 93)) {do {
4787 < 50)<= 93)) {
4788 < 50)<= 93)) {this.doc.getLine(row);
4789 < 50)<= 93)) {while (row < l && /^\s*$/.test(rightOfCursor));
4790  
4791 < 50)<= 93)) {if (!/^\s+/.test(rightOfCursor))
4792 < 50)<= 93)) {"";
4793 < 50)<= 93)) {
4794 < 50)<= 93)) {
4795  
4796 < 50)<= 93)) {var index = this.$shortWordEndIndex(rightOfCursor);
4797  
4798 < 50)<= 93)) {this.moveCursorTo(row, column + index);
4799 < 50)<= 93)) {
4800  
4801 < 50)<= 93)) {this.moveCursorShortWordLeft = function() {
4802 < 50)<= 93)) {var row = this.lead.row;
4803 < 50)<= 93)) {var column = this.lead.column;
4804  
4805 < 50)<= 93)) {var fold;
4806 < 50)<= 93)) {if (fold = this.session.getFoldAt(row, column, -1))
4807 < 50)<= 93)) {return this.moveCursorTo(fold.start.row, fold.start.column);
4808  
4809 < 50)<= 93)) {var line = this.session.getLine(row).substring(0, column);
4810 < 50)<= 93)) {if (column === 0) {
4811 < 50)<= 93)) {do {
4812 < 50)<= 93)) {
4813 < 50)<= 93)) {this.doc.getLine(row);
4814 < 50)<= 93)) {while (row > 0 && /^\s*$/.test(line));
4815  
4816 < 50)<= 93)) {
4817 < 50)<= 93)) {if (!/\s+$/.test(line))
4818 < 50)<= 93)) {"";
4819 < 50)<= 93)) {
4820  
4821 < 50)<= 93)) {var leftOfCursor = lang.stringReverse(line);
4822 < 50)<= 93)) {var index = this.$shortWordEndIndex(leftOfCursor);
4823  
4824 < 50)<= 93)) {return this.moveCursorTo(row, column - index);
4825 < 50)<= 93)) {
4826  
4827 < 50)<= 93)) {this.moveCursorWordRight = function() {
4828 < 50)<= 93)) {if (this.session.$selectLongWords)
4829 < 50)<= 93)) {this.moveCursorLongWordRight();
4830 < 50)<= 93)) {else
4831 < 50)<= 93)) {this.moveCursorShortWordRight();
4832 < 50)<= 93)) {
4833  
4834 < 50)<= 93)) {this.moveCursorWordLeft = function() {
4835 < 50)<= 93)) {if (this.session.$selectLongWords)
4836 < 50)<= 93)) {this.moveCursorLongWordLeft();
4837 < 50)<= 93)) {else
4838 < 50)<= 93)) {this.moveCursorShortWordLeft();
4839 < 50)<= 93)) {
4840 < 50)<= 93)) {this.moveCursorBy = function(rows, chars) {
4841 < 50)<= 93)) {var screenPos = this.session.documentToScreenPosition(
4842 < 50)<= 93)) {this.lead.row,
4843 < 50)<= 93)) {this.lead.column
4844 < 50)<= 93)) {
4845  
4846 < 50)<= 93)) {if (chars === 0) {
4847 < 50)<= 93)) {if (this.$desiredColumn)
4848 < 50)<= 93)) {this.$desiredColumn;
4849 < 50)<= 93)) {else
4850 < 50)<= 93)) {this.$desiredColumn = screenPos.column;
4851 < 50)<= 93)) {
4852  
4853 < 50)<= 93)) {var docPos = this.session.screenToDocumentPosition(screenPos.row + rows, screenPos.column);
4854  
4855 < 50)<= 93)) {if (rows !== 0 && chars === 0 && docPos.row === this.lead.row && docPos.column === this.lead.column) {
4856 < 50)<= 93)) {if (this.session.lineWidgets && this.session.lineWidgets[docPos.row]) {
4857 < 50)<= 93)) {if (docPos.row > 0 || rows > 0)
4858 < 50)<= 93)) {
4859 < 50)<= 93)) {
4860 < 50)<= 93)) {
4861 < 50)<= 93)) {this.moveCursorTo(docPos.row, docPos.column + chars, chars === 0);
4862 < 50)<= 93)) {
4863 < 50)<= 93)) {this.moveCursorToPosition = function(position) {
4864 < 50)<= 93)) {this.moveCursorTo(position.row, position.column);
4865 < 50)<= 93)) {
4866 < 50)<= 93)) {this.moveCursorTo = function(row, column, keepDesiredColumn) {
4867 < 50)<= 93)) {var fold = this.session.getFoldAt(row, column, 1);
4868 < 50)<= 93)) {if (fold) {
4869 < 50)<= 93)) {
4870 < 50)<= 93)) {
4871 < 50)<= 93)) {
4872  
4873 < 50)<= 93)) {this.$keepDesiredColumnOnChange = true;
4874 < 50)<= 93)) {this.lead.setPosition(row, column);
4875 < 50)<= 93)) {this.$keepDesiredColumnOnChange = false;
4876  
4877 < 50)<= 93)) {if (!keepDesiredColumn)
4878 < 50)<= 93)) {this.$desiredColumn = null;
4879 < 50)<= 93)) {
4880 < 50)<= 93)) {this.moveCursorToScreen = function(row, column, keepDesiredColumn) {
4881 < 50)<= 93)) {var pos = this.session.screenToDocumentPosition(row, column);
4882 < 50)<= 93)) {this.moveCursorTo(pos.row, pos.column, keepDesiredColumn);
4883 < 50)<= 93)) {
4884 < 50)<= 93)) {this.detach = function() {
4885 < 50)<= 93)) {this.lead.detach();
4886 < 50)<= 93)) {this.anchor.detach();
4887 < 50)<= 93)) {this.session = this.doc = null;
4888 < 50)<= 93)) {
4889  
4890 < 50)<= 93)) {this.fromOrientedRange = function(range) {
4891 < 50)<= 93)) {this.setSelectionRange(range, range.cursor == range.start);
4892 < 50)<= 93)) {this.$desiredColumn = range.desiredColumn || this.$desiredColumn;
4893 < 50)<= 93)) {
4894  
4895 < 50)<= 93)) {this.toOrientedRange = function(range) {
4896 < 50)<= 93)) {var r = this.getRange();
4897 < 50)<= 93)) {if (range) {
4898 < 50)<= 93)) {
4899 < 50)<= 93)) {
4900 < 50)<= 93)) {
4901 < 50)<= 93)) {
4902 < 50)<= 93)) {else {
4903 < 50)<= 93)) {
4904 < 50)<= 93)) {
4905  
4906 < 50)<= 93)) {this.isBackwards() ? range.start : range.end;
4907 < 50)<= 93)) {this.$desiredColumn;
4908 < 50)<= 93)) {return range;
4909 < 50)<= 93)) {
4910 < 50)<= 93)) {this.getRangeOfMovements = function(func) {
4911 < 50)<= 93)) {var start = this.getCursor();
4912 < 50)<= 93)) {try {
4913 < 50)<= 93)) {this);
4914 < 50)<= 93)) {var end = this.getCursor();
4915 < 50)<= 93)) {return Range.fromPoints(start,end);
4916 < 50)<= 93)) {catch(e) {
4917 < 50)<= 93)) {return Range.fromPoints(start,start);
4918 < 50)<= 93)) {finally {
4919 < 50)<= 93)) {this.moveCursorToPosition(start);
4920 < 50)<= 93)) {
4921 < 50)<= 93)) {
4922  
4923 < 50)<= 93)) {this.toJSON = function() {
4924 < 50)<= 93)) {if (this.rangeCount) {
4925 < 50)<= 93)) {var data = this.ranges.map(function(r) {
4926 < 50)<= 93)) {var r1 = r.clone();
4927 < 50)<= 93)) {
4928 < 50)<= 93)) {return r1;
4929 < 50)<= 93)) {
4930 < 50)<= 93)) {else {
4931 < 50)<= 93)) {var data = this.getRange();
4932 < 50)<= 93)) {this.isBackwards();
4933 < 50)<= 93)) {
4934 < 50)<= 93)) {return data;
4935 < 50)<= 93)) {
4936  
4937 < 50)<= 93)) {this.fromJSON = function(data) {
4938 < 50)<= 93)) {if (data.start == undefined) {
4939 < 50)<= 93)) {if (this.rangeList) {
4940 < 50)<= 93)) {this.toSingleRange(data[0]);
4941 < 50)<= 93)) {for (var i = data.length; i--; ) {
4942 < 50)<= 93)) {var r = Range.fromPoints(data[i].start, data[i].end);
4943 < 50)<= 93)) {if (data[i].isBackwards)
4944 < 50)<= 93)) {
4945 < 50)<= 93)) {this.addRange(r, true);
4946 < 50)<= 93)) {
4947 < 50)<= 93)) {return;
4948 < 50)<= 93)) {else
4949 < 50)<= 93)) {
4950 < 50)<= 93)) {
4951 < 50)<= 93)) {if (this.rangeList)
4952 < 50)<= 93)) {this.toSingleRange(data);
4953 < 50)<= 93)) {this.setSelectionRange(data, data.isBackwards);
4954 < 50)<= 93)) {
4955  
4956 < 50)<= 93)) {this.isEqual = function(data) {
4957 < 50)<= 93)) {if ((data.length || this.rangeCount) && data.length != this.rangeCount)
4958 < 50)<= 93)) {return false;
4959 < 50)<= 93)) {if (!data.length || !this.ranges)
4960 < 50)<= 93)) {return this.getRange().isEqual(data);
4961  
4962 < 50)<= 93)) {for (var i = this.ranges.length; i--; ) {
4963 < 50)<= 93)) {if (!this.ranges[i].isEqual(data[i]))
4964 < 50)<= 93)) {return false;
4965 < 50)<= 93)) {
4966 < 50)<= 93)) {return true;
4967 < 50)<= 93)) {
4968  
4969 < 50)<= 93)) {
4970  
4971 < 50)<= 93)) {
4972 < 50)<= 93)) {
4973  
4974 < 50)<= 93)) {"ace/tokenizer",["require","exports","module","ace/config"], function(require, exports, module) {
4975 < 50)<= 93)) {"use strict";
4976  
4977 < 50)<= 93)) {var config = require("./config");
4978 < 50)<= 93)) {var MAX_TOKEN_COUNT = 2000;
4979 < 50)<= 93)) {var Tokenizer = function(rules) {
4980 < 50)<= 93)) {this.states = rules;
4981  
4982 < 50)<= 93)) {this.regExps = {};
4983 < 50)<= 93)) {this.matchMappings = {};
4984 < 50)<= 93)) {for (var key in this.states) {
4985 < 50)<= 93)) {var state = this.states[key];
4986 < 50)<= 93)) {var ruleRegExps = [];
4987 < 50)<= 93)) {var matchTotal = 0;
4988 < 50)<= 93)) {var mapping = this.matchMappings[key] = {defaultToken: "text"};
4989 < 50)<= 93)) {var flag = "g";
4990  
4991 < 50)<= 93)) {var splitterRurles = [];
4992 < 50)<= 93)) {for (var i = 0; i < state.length; i++) {
4993 < 50)<= 93)) {var rule = state[i];
4994 < 50)<= 93)) {if (rule.defaultToken)
4995 < 50)<= 93)) {
4996 < 50)<= 93)) {if (rule.caseInsensitive)
4997 < 50)<= 93)) {"gi";
4998 < 50)<= 93)) {if (rule.regex == null)
4999 < 50)<= 93)) {continue;
5000  
5001 < 50)<= 93)) {if (rule.regex instanceof RegExp)
5002 < 50)<= 93)) {
5003 < 50)<= 93)) {var adjustedregex = rule.regex;
5004 < 50)<= 93)) {var matchcount = new RegExp("(?:(" + adjustedregex + ")|(.))").exec("a").length - 2;
5005 < 50)<= 93)) {if (Array.isArray(rule.token)) {
5006 < 50)<= 93)) {if (rule.token.length == 1 || matchcount == 1) {
5007 < 50)<= 93)) {
5008 < 50)<= 93)) {else if (matchcount - 1 != rule.token.length) {
5009 < 50)<= 93)) {this.reportError("number of classes and regexp groups doesn't match", {
5010 < 50)<= 93)) {
5011 < 50)<= 93)) {
5012 < 50)<= 93)) {
5013 < 50)<= 93)) {
5014 < 50)<= 93)) {else {
5015 < 50)<= 93)) {
5016 < 50)<= 93)) {null;
5017 < 50)<= 93)) {this.$arrayTokens;
5018 < 50)<= 93)) {
5019 < 50)<= 93)) {else if (typeof rule.token == "function" && !rule.onMatch) {
5020 < 50)<= 93)) {if (matchcount > 1)
5021 < 50)<= 93)) {this.$applyToken;
5022 < 50)<= 93)) {else
5023 < 50)<= 93)) {
5024 < 50)<= 93)) {
5025  
5026 < 50)<= 93)) {if (matchcount > 1) {
5027 < 50)<= 93)) {if (/\\\d/.test(rule.regex)) {
5028 < 50)<= 93)) {/\\([0-9]+)/g, function(match, digit) {
5029 < 50)<= 93)) {return "\\" + (parseInt(digit, 10) + matchTotal + 1);
5030 < 50)<= 93)) {
5031 < 50)<= 93)) {else {
5032 < 50)<= 93)) {
5033 < 50)<= 93)) {this.removeCapturingGroups(rule.regex);
5034 < 50)<= 93)) {
5035 < 50)<= 93)) {if (!rule.splitRegex && typeof rule.token != "string")
5036 < 50)<= 93)) {// flag will be known only at the very end
5037 < 50)<= 93)) { }
5038  
5039 < 50)<= 93)) {
5040 < 50)<= 93)) {
5041  
5042 < 50)<= 93)) {
5043 < 50)<= 93)) {if (!rule.onMatch)
5044 < 50)<= 93)) {null;
5045 < 50)<= 93)) {
5046  
5047 < 50)<= 93)) {if (!ruleRegExps.length) {
5048 < 50)<= 93)) {
5049 < 50)<= 93)) {"$");
5050 < 50)<= 93)) {
5051  
5052 < 50)<= 93)) {function(rule) {
5053 < 50)<= 93)) {this.createSplitterRegexp(rule.regex, flag);
5054 < 50)<= 93)) {this);
5055  
5056 < 50)<= 93)) {this.regExps[key] = new RegExp("(" + ruleRegExps.join(")|(") + ")|($)", flag);
5057 < 50)<= 93)) {
5058 < 50)<= 93)) {
5059  
5060 < 50)<= 93)) {function() {
5061 < 50)<= 93)) {this.$setMaxTokenCount = function(m) {
5062 < 50)<= 93)) {
5063 < 50)<= 93)) {
5064  
5065 < 50)<= 93)) {this.$applyToken = function(str) {
5066 < 50)<= 93)) {var values = this.splitRegex.exec(str).slice(1);
5067 < 50)<= 93)) {var types = this.token.apply(this, values);
5068 < 50)<= 93)) {if (typeof types === "string")
5069 < 50)<= 93)) {return [{type: types, value: str}];
5070  
5071 < 50)<= 93)) {var tokens = [];
5072 < 50)<= 93)) {for (var i = 0, l = types.length; i < l; i++) {
5073 < 50)<= 93)) {if (values[i])
5074 < 50)<= 93)) {
5075 < 50)<= 93)) {
5076 < 50)<= 93)) {
5077 < 50)<= 93)) {
5078 < 50)<= 93)) {
5079 < 50)<= 93)) {return tokens;
5080 < 50)<= 93)) {
5081  
5082 < 50)<= 93)) {this.$arrayTokens = function(str) {
5083 < 50)<= 93)) {if (!str)
5084 < 50)<= 93)) {return [];
5085 < 50)<= 93)) {var values = this.splitRegex.exec(str);
5086 < 50)<= 93)) {if (!values)
5087 < 50)<= 93)) {return "text";
5088 < 50)<= 93)) {var tokens = [];
5089 < 50)<= 93)) {var types = this.tokenArray;
5090 < 50)<= 93)) {for (var i = 0, l = types.length; i < l; i++) {
5091 < 50)<= 93)) {if (values[i + 1])
5092 < 50)<= 93)) {
5093 < 50)<= 93)) {
5094 < 50)<= 93)) {
5095 < 50)<= 93)) {
5096 < 50)<= 93)) {
5097 < 50)<= 93)) {return tokens;
5098 < 50)<= 93)) {
5099  
5100 < 50)<= 93)) {this.removeCapturingGroups = function(src) {
5101 < 50)<= 93)) {var r = src.replace(
5102 < 50)<= 93)) {/\[(?:\\.|[^\]])*?\]|\\.|\(\?[:=!]|(\()/g,
5103 < 50)<= 93)) {function(x, y) {return y ? "(?:" : x;}
5104 < 50)<= 93)) {
5105 < 50)<= 93)) {return r;
5106 < 50)<= 93)) {
5107  
5108 < 50)<= 93)) {this.createSplitterRegexp = function(src, flag) {
5109 < 50)<= 93)) {if (src.indexOf("(?=") != -1) {
5110 < 50)<= 93)) {var stack = 0;
5111 < 50)<= 93)) {var inChClass = false;
5112 < 50)<= 93)) {var lastCapture = {};
5113 < 50)<= 93)) {/(\\.)|(\((?:\?[=!])?)|(\))|([\[\]])/g, function(
5114 < 50)<= 93)) {
5115 < 50)<= 93)) {
5116 < 50)<= 93)) {if (inChClass) {
5117 < 50)<= 93)) {"]";
5118 < 50)<= 93)) {else if (square) {
5119 < 50)<= 93)) {true;
5120 < 50)<= 93)) {else if (parenClose) {
5121 < 50)<= 93)) {if (stack == lastCapture.stack) {
5122 < 50)<= 93)) {
5123 < 50)<= 93)) {
5124 < 50)<= 93)) {
5125 < 50)<= 93)) {
5126 < 50)<= 93)) {else if (parenOpen) {
5127 < 50)<= 93)) {
5128 < 50)<= 93)) {if (parenOpen.length != 1) {
5129 < 50)<= 93)) {
5130 < 50)<= 93)) {
5131 < 50)<= 93)) {
5132 < 50)<= 93)) {
5133 < 50)<= 93)) {return m;
5134 < 50)<= 93)) {
5135  
5136 < 50)<= 93)) {if (lastCapture.end != null && /^\)*$/.test(src.substr(lastCapture.end)))
5137 < 50)<= 93)) {
5138 < 50)<= 93)) {
5139 < 50)<= 93)) {if (src.charAt(0) != "^") src = "^" + src;
5140 < 50)<= 93)) {if (src.charAt(src.length - 1) != "$") src += "$";
5141  
5142 < 50)<= 93)) {return new RegExp(src, (flag||"").replace("g", ""));
5143 < 50)<= 93)) {
5144 < 50)<= 93)) {this.getLineTokens = function(line, startState) {
5145 < 50)<= 93)) {if (startState && typeof startState != "string") {
5146 < 50)<= 93)) {var stack = startState.slice(0);
5147 < 50)<= 93)) {
5148 < 50)<= 93)) {if (startState === "#tmp") {
5149 < 50)<= 93)) {
5150 < 50)<= 93)) {
5151 < 50)<= 93)) {
5152 < 50)<= 93)) {else
5153 < 50)<= 93)) {var stack = [];
5154  
5155 < 50)<= 93)) {var currentState = startState || "start";
5156 < 50)<= 93)) {var state = this.states[currentState];
5157 < 50)<= 93)) {if (!state) {
5158 < 50)<= 93)) {"start";
5159 < 50)<= 93)) {this.states[currentState];
5160 < 50)<= 93)) {
5161 < 50)<= 93)) {var mapping = this.matchMappings[currentState];
5162 < 50)<= 93)) {var re = this.regExps[currentState];
5163 < 50)<= 93)) {
5164  
5165 < 50)<= 93)) {var match, tokens = [];
5166 < 50)<= 93)) {var lastIndex = 0;
5167 < 50)<= 93)) {var matchAttempts = 0;
5168  
5169 < 50)<= 93)) {var token = {type: null, value: ""};
5170  
5171 < 50)<= 93)) {while (match = re.exec(line)) {
5172 < 50)<= 93)) {var type = mapping.defaultToken;
5173 < 50)<= 93)) {var rule = null;
5174 < 50)<= 93)) {var value = match[0];
5175 < 50)<= 93)) {var index = re.lastIndex;
5176  
5177 < 50)<= 93)) {if (index - value.length > lastIndex) {
5178 < 50)<= 93)) {var skipped = line.substring(lastIndex, index - value.length);
5179 < 50)<= 93)) {if (token.type == type) {
5180 < 50)<= 93)) {
5181 < 50)<= 93)) {else {
5182 < 50)<= 93)) {if (token.type)
5183 < 50)<= 93)) {
5184 < 50)<= 93)) {
5185 < 50)<= 93)) {
5186 < 50)<= 93)) {
5187  
5188 < 50)<= 93)) {for (var i = 0; i < match.length-2; i++) {
5189 < 50)<= 93)) {if (match[i + 1] === undefined)
5190 < 50)<= 93)) {continue;
5191  
5192 < 50)<= 93)) {
5193  
5194 < 50)<= 93)) {if (rule.onMatch)
5195 < 50)<= 93)) {
5196 < 50)<= 93)) {else
5197 < 50)<= 93)) {
5198  
5199 < 50)<= 93)) {if (rule.next) {
5200 < 50)<= 93)) {if (typeof rule.next == "string") {
5201 < 50)<= 93)) {
5202 < 50)<= 93)) {else {
5203 < 50)<= 93)) {
5204 < 50)<= 93)) {
5205  
5206 < 50)<= 93)) {this.states[currentState];
5207 < 50)<= 93)) {if (!state) {
5208 < 50)<= 93)) {this.reportError("state doesn't exist", currentState);
5209 < 50)<= 93)) {"start";
5210 < 50)<= 93)) {this.states[currentState];
5211 < 50)<= 93)) {
5212 < 50)<= 93)) {this.matchMappings[currentState];
5213 < 50)<= 93)) {
5214 < 50)<= 93)) {this.regExps[currentState];
5215 < 50)<= 93)) {
5216 < 50)<= 93)) {
5217 < 50)<= 93)) {break;
5218 < 50)<= 93)) {
5219  
5220 < 50)<= 93)) {if (value) {
5221 < 50)<= 93)) {if (typeof type === "string") {
5222 < 50)<= 93)) {if ((!rule || rule.merge !== false) && token.type === type) {
5223 < 50)<= 93)) {
5224 < 50)<= 93)) {else {
5225 < 50)<= 93)) {if (token.type)
5226 < 50)<= 93)) {
5227 < 50)<= 93)) {
5228 < 50)<= 93)) {
5229 < 50)<= 93)) {else if (type) {
5230 < 50)<= 93)) {if (token.type)
5231 < 50)<= 93)) {
5232 < 50)<= 93)) {null, value: ""};
5233 < 50)<= 93)) {for (var i = 0; i < type.length; i++)
5234 < 50)<= 93)) {
5235 < 50)<= 93)) {
5236 < 50)<= 93)) {
5237  
5238 < 50)<= 93)) {if (lastIndex == line.length)
5239 < 50)<= 93)) {break;
5240  
5241 < 50)<= 93)) {
5242  
5243 < 50)<= 93)) {if (matchAttempts++ > MAX_TOKEN_COUNT) {
5244 < 50)<= 93)) {if (matchAttempts > 2 * line.length) {
5245 < 50)<= 93)) {this.reportError("infinite loop with in ace tokenizer", {
5246 < 50)<= 93)) {
5247 < 50)<= 93)) {
5248 < 50)<= 93)) {
5249 < 50)<= 93)) {
5250 < 50)<= 93)) {while (lastIndex < line.length) {
5251 < 50)<= 93)) {if (token.type)
5252 < 50)<= 93)) {
5253 < 50)<= 93)) {
5254 < 50)<= 93)) {
5255 < 50)<= 93)) {"overflow"
5256 < 50)<= 93)) {
5257 < 50)<= 93)) {
5258 < 50)<= 93)) {"start";
5259 < 50)<= 93)) {
5260 < 50)<= 93)) {break;
5261 < 50)<= 93)) {
5262 < 50)<= 93)) {
5263  
5264 < 50)<= 93)) {if (token.type)
5265 < 50)<= 93)) {
5266  
5267 < 50)<= 93)) {if (stack.length > 1) {
5268 < 50)<= 93)) {if (stack[0] !== currentState)
5269 < 50)<= 93)) {"#tmp", currentState);
5270 < 50)<= 93)) {
5271 < 50)<= 93)) {return {
5272 < 50)<= 93)) {
5273 < 50)<= 93)) {
5274 < 50)<= 93)) {
5275 < 50)<= 93)) {
5276  
5277 < 50)<= 93)) {this.reportError = config.reportError;
5278  
5279 < 50)<= 93)) {
5280  
5281 < 50)<= 93)) {
5282 < 50)<= 93)) {
5283  
5284 < 50)<= 93)) {"ace/mode/text_highlight_rules",["require","exports","module","ace/lib/lang"], function(require, exports, module) {
5285 < 50)<= 93)) {"use strict";
5286  
5287 < 50)<= 93)) {var lang = require("../lib/lang");
5288  
5289 < 50)<= 93)) {var TextHighlightRules = function() {
5290  
5291 < 50)<= 93)) {this.$rules = {
5292 < 50)<= 93)) {"start" : [{
5293 < 50)<= 93)) {"empty_line",
5294 < 50)<= 93)) {'^$'
5295 < 50)<= 93)) {
5296 < 50)<= 93)) {"text"
5297 < 50)<= 93)) {
5298 < 50)<= 93)) {
5299 < 50)<= 93)) {
5300  
5301 < 50)<= 93)) {function() {
5302  
5303 < 50)<= 93)) {this.addRules = function(rules, prefix) {
5304 < 50)<= 93)) {if (!prefix) {
5305 < 50)<= 93)) {for (var key in rules)
5306 < 50)<= 93)) {this.$rules[key] = rules[key];
5307 < 50)<= 93)) {return;
5308 < 50)<= 93)) {
5309 < 50)<= 93)) {for (var key in rules) {
5310 < 50)<= 93)) {var state = rules[key];
5311 < 50)<= 93)) {for (var i = 0; i < state.length; i++) {
5312 < 50)<= 93)) {var rule = state[i];
5313 < 50)<= 93)) {if (rule.next || rule.onMatch) {
5314 < 50)<= 93)) {if (typeof rule.next == "string") {
5315 < 50)<= 93)) {if (rule.next.indexOf(prefix) !== 0)
5316 < 50)<= 93)) {
5317 < 50)<= 93)) {
5318 < 50)<= 93)) {if (rule.nextState && rule.nextState.indexOf(prefix) !== 0)
5319 < 50)<= 93)) {
5320 < 50)<= 93)) {
5321 < 50)<= 93)) {
5322 < 50)<= 93)) {this.$rules[prefix + key] = state;
5323 < 50)<= 93)) {
5324 < 50)<= 93)) {
5325  
5326 < 50)<= 93)) {this.getRules = function() {
5327 < 50)<= 93)) {return this.$rules;
5328 < 50)<= 93)) {
5329  
5330 < 50)<= 93)) {this.embedRules = function (HighlightRules, prefix, escapeRules, states, append) {
5331 < 50)<= 93)) {var embedRules = typeof HighlightRules == "function"
5332 < 50)<= 93)) {new HighlightRules().getRules()
5333 < 50)<= 93)) {
5334 < 50)<= 93)) {if (states) {
5335 < 50)<= 93)) {for (var i = 0; i < states.length; i++)
5336 < 50)<= 93)) {
5337 < 50)<= 93)) {else {
5338 < 50)<= 93)) {
5339 < 50)<= 93)) {for (var key in embedRules)
5340 < 50)<= 93)) {
5341 < 50)<= 93)) {
5342  
5343 < 50)<= 93)) {this.addRules(embedRules, prefix);
5344  
5345 < 50)<= 93)) {if (escapeRules) {
5346 < 50)<= 93)) {var addRules = Array.prototype[append ? "push" : "unshift"];
5347 < 50)<= 93)) {for (var i = 0; i < states.length; i++)
5348 < 50)<= 93)) {this.$rules[states[i]], lang.deepCopy(escapeRules));
5349 < 50)<= 93)) {
5350  
5351 < 50)<= 93)) {if (!this.$embeds)
5352 < 50)<= 93)) {this.$embeds = [];
5353 < 50)<= 93)) {this.$embeds.push(prefix);
5354 < 50)<= 93)) {
5355  
5356 < 50)<= 93)) {this.getEmbeds = function() {
5357 < 50)<= 93)) {return this.$embeds;
5358 < 50)<= 93)) {
5359  
5360 < 50)<= 93)) {var pushState = function(currentState, stack) {
5361 < 50)<= 93)) {if (currentState != "start" || stack.length)
5362 < 50)<= 93)) {this.nextState, currentState);
5363 < 50)<= 93)) {return this.nextState;
5364 < 50)<= 93)) {
5365 < 50)<= 93)) {var popState = function(currentState, stack) {
5366 < 50)<= 93)) {
5367 < 50)<= 93)) {return stack.shift() || "start";
5368 < 50)<= 93)) {
5369  
5370 < 50)<= 93)) {this.normalizeRules = function() {
5371 < 50)<= 93)) {var id = 0;
5372 < 50)<= 93)) {var rules = this.$rules;
5373 < 50)<= 93)) {function processState(key) {
5374 < 50)<= 93)) {var state = rules[key];
5375 < 50)<= 93)) {true;
5376 < 50)<= 93)) {for (var i = 0; i < state.length; i++) {
5377 < 50)<= 93)) {var rule = state[i];
5378 < 50)<= 93)) {var toInsert = null;
5379 < 50)<= 93)) {if (Array.isArray(rule)) {
5380 < 50)<= 93)) {
5381 < 50)<= 93)) {
5382 < 50)<= 93)) {
5383 < 50)<= 93)) {if (!rule.regex && rule.start) {
5384 < 50)<= 93)) {
5385 < 50)<= 93)) {if (!rule.next)
5386 < 50)<= 93)) {
5387 < 50)<= 93)) {
5388 < 50)<= 93)) {
5389 < 50)<= 93)) {
5390 < 50)<= 93)) {".end",
5391 < 50)<= 93)) {
5392 < 50)<= 93)) {"pop"
5393 < 50)<= 93)) {
5394 < 50)<= 93)) {".start";
5395 < 50)<= 93)) {true;
5396 < 50)<= 93)) {
5397 < 50)<= 93)) {var next = rule.next || rule.push;
5398 < 50)<= 93)) {if (next && Array.isArray(next)) {
5399 < 50)<= 93)) {var stateName = rule.stateName;
5400 < 50)<= 93)) {if (!stateName) {
5401 < 50)<= 93)) {
5402 < 50)<= 93)) {if (typeof stateName != "string")
5403 < 50)<= 93)) {"";
5404 < 50)<= 93)) {if (rules[stateName])
5405 < 50)<= 93)) {
5406 < 50)<= 93)) {
5407 < 50)<= 93)) {
5408 < 50)<= 93)) {
5409 < 50)<= 93)) {
5410 < 50)<= 93)) {else if (next == "pop") {
5411 < 50)<= 93)) {
5412 < 50)<= 93)) {
5413  
5414 < 50)<= 93)) {if (rule.push) {
5415 < 50)<= 93)) {
5416 < 50)<= 93)) {
5417 < 50)<= 93)) {
5418 < 50)<= 93)) {
5419  
5420 < 50)<= 93)) {if (rule.rules) {
5421 < 50)<= 93)) {for (var r in rule.rules) {
5422 < 50)<= 93)) {if (rules[r]) {
5423 < 50)<= 93)) {if (rules[r].push)
5424 < 50)<= 93)) {
5425 < 50)<= 93)) {else {
5426 < 50)<= 93)) {
5427 < 50)<= 93)) {
5428 < 50)<= 93)) {
5429 < 50)<= 93)) {
5430 < 50)<= 93)) {var includeName = typeof rule == "string"
5431 < 50)<= 93)) {
5432 < 50)<= 93)) {"string"
5433 < 50)<= 93)) {
5434 < 50)<= 93)) {"";
5435 < 50)<= 93)) {if (includeName) {
5436 < 50)<= 93)) {
5437 < 50)<= 93)) {
5438  
5439 < 50)<= 93)) {if (toInsert) {
5440 < 50)<= 93)) {var args = [i, 1].concat(toInsert);
5441 < 50)<= 93)) {if (rule.noEscape)
5442 < 50)<= 93)) {function(x) {return !x.next;});
5443 < 50)<= 93)) {
5444 < 50)<= 93)) {
5445 < 50)<= 93)) {
5446  
5447 < 50)<= 93)) {if (rule.keywordMap) {
5448 < 50)<= 93)) {this.createKeywordMapper(
5449 < 50)<= 93)) {"text", rule.caseInsensitive
5450 < 50)<= 93)) {
5451 < 50)<= 93)) {
5452 < 50)<= 93)) {
5453 < 50)<= 93)) {
5454 < 50)<= 93)) {
5455 < 50)<= 93)) {this);
5456 < 50)<= 93)) {
5457  
5458 < 50)<= 93)) {this.createKeywordMapper = function(map, defaultToken, ignoreCase, splitChar) {
5459 < 50)<= 93)) {var keywords = Object.create(null);
5460 < 50)<= 93)) {function(className) {
5461 < 50)<= 93)) {var a = map[className];
5462 < 50)<= 93)) {if (ignoreCase)
5463 < 50)<= 93)) {
5464 < 50)<= 93)) {var list = a.split(splitChar || "|");
5465 < 50)<= 93)) {for (var i = list.length; i--; )
5466 < 50)<= 93)) {
5467 < 50)<= 93)) {
5468 < 50)<= 93)) {if (Object.getPrototypeOf(keywords)) {
5469 < 50)<= 93)) {null;
5470 < 50)<= 93)) {
5471 < 50)<= 93)) {this.$keywordList = Object.keys(keywords);
5472 < 50)<= 93)) {null;
5473 < 50)<= 93)) {return ignoreCase
5474 < 50)<= 93)) {function(value) {return keywords[value.toLowerCase()] || defaultToken }
5475 < 50)<= 93)) {function(value) {return keywords[value] || defaultToken };
5476 < 50)<= 93)) {
5477  
5478 < 50)<= 93)) {this.getKeywords = function() {
5479 < 50)<= 93)) {return this.$keywords;
5480 < 50)<= 93)) {
5481  
5482 < 50)<= 93)) {
5483  
5484 < 50)<= 93)) {
5485 < 50)<= 93)) {
5486  
5487 < 50)<= 93)) {"ace/mode/behaviour",["require","exports","module"], function(require, exports, module) {
5488 < 50)<= 93)) {"use strict";
5489  
5490 < 50)<= 93)) {var Behaviour = function() {
5491 < 50)<= 93)) {this.$behaviours = {};
5492 < 50)<= 93)) {
5493  
5494 < 50)<= 93)) {function () {
5495  
5496 < 50)<= 93)) {this.add = function (name, action, callback) {
5497 < 50)<= 93)) {switch (undefined) {
5498 < 50)<= 93)) {case this.$behaviours:
5499 < 50)<= 93)) {this.$behaviours = {};
5500 < 50)<= 93)) {case this.$behaviours[name]:
5501 < 50)<= 93)) {this.$behaviours[name] = {};
5502 < 50)<= 93)) {
5503 < 50)<= 93)) {this.$behaviours[name][action] = callback;
5504 < 50)<= 93)) {
5505  
5506 < 50)<= 93)) {this.addBehaviours = function (behaviours) {
5507 < 50)<= 93)) {for (var key in behaviours) {
5508 < 50)<= 93)) {for (var action in behaviours[key]) {
5509 < 50)<= 93)) {this.add(key, action, behaviours[key][action]);
5510 < 50)<= 93)) {
5511 < 50)<= 93)) {
5512 < 50)<= 93)) {
5513  
5514 < 50)<= 93)) {this.remove = function (name) {
5515 < 50)<= 93)) {if (this.$behaviours && this.$behaviours[name]) {
5516 < 50)<= 93)) {this.$behaviours[name];
5517 < 50)<= 93)) {
5518 < 50)<= 93)) {
5519  
5520 < 50)<= 93)) {this.inherit = function (mode, filter) {
5521 < 50)<= 93)) {if (typeof mode === "function") {
5522 < 50)<= 93)) {var behaviours = new mode().getBehaviours(filter);
5523 < 50)<= 93)) {else {
5524 < 50)<= 93)) {var behaviours = mode.getBehaviours(filter);
5525 < 50)<= 93)) {
5526 < 50)<= 93)) {this.addBehaviours(behaviours);
5527 < 50)<= 93)) {
5528  
5529 < 50)<= 93)) {this.getBehaviours = function (filter) {
5530 < 50)<= 93)) {if (!filter) {
5531 < 50)<= 93)) {return this.$behaviours;
5532 < 50)<= 93)) {else {
5533 < 50)<= 93)) {var ret = {}
5534 < 50)<= 93)) {for (var i = 0; i < filter.length; i++) {
5535 < 50)<= 93)) {if (this.$behaviours[filter[i]]) {
5536 < 50)<= 93)) {this.$behaviours[filter[i]];
5537 < 50)<= 93)) {
5538 < 50)<= 93)) {
5539 < 50)<= 93)) {return ret;
5540 < 50)<= 93)) {
5541 < 50)<= 93)) {
5542  
5543 < 50)<= 93)) {
5544  
5545 < 50)<= 93)) {
5546 < 50)<= 93)) {
5547  
5548 < 50)<= 93)) {"ace/token_iterator",["require","exports","module"], function(require, exports, module) {
5549 < 50)<= 93)) {"use strict";
5550 < 50)<= 93)) {var TokenIterator = function(session, initialRow, initialColumn) {
5551 < 50)<= 93)) {this.$session = session;
5552 < 50)<= 93)) {this.$row = initialRow;
5553 < 50)<= 93)) {this.$rowTokens = session.getTokens(initialRow);
5554  
5555 < 50)<= 93)) {var token = session.getTokenAt(initialRow, initialColumn);
5556 < 50)<= 93)) {this.$tokenIndex = token ? token.index : -1;
5557 < 50)<= 93)) {
5558  
5559 < 50)<= 93)) {function() {
5560 < 50)<= 93)) {this.stepBackward = function() {
5561 < 50)<= 93)) {this.$tokenIndex -= 1;
5562  
5563 < 50)<= 93)) {while (this.$tokenIndex < 0) {
5564 < 50)<= 93)) {this.$row -= 1;
5565 < 50)<= 93)) {if (this.$row < 0) {
5566 < 50)<= 93)) {this.$row = 0;
5567 < 50)<= 93)) {return null;
5568 < 50)<= 93)) {
5569  
5570 < 50)<= 93)) {this.$rowTokens = this.$session.getTokens(this.$row);
5571 < 50)<= 93)) {this.$tokenIndex = this.$rowTokens.length - 1;
5572 < 50)<= 93)) {
5573  
5574 < 50)<= 93)) {return this.$rowTokens[this.$tokenIndex];
5575 < 50)<= 93)) {
5576 < 50)<= 93)) {this.stepForward = function() {
5577 < 50)<= 93)) {this.$tokenIndex += 1;
5578 < 50)<= 93)) {var rowCount;
5579 < 50)<= 93)) {while (this.$tokenIndex >= this.$rowTokens.length) {
5580 < 50)<= 93)) {this.$row += 1;
5581 < 50)<= 93)) {if (!rowCount)
5582 < 50)<= 93)) {this.$session.getLength();
5583 < 50)<= 93)) {if (this.$row >= rowCount) {
5584 < 50)<= 93)) {this.$row = rowCount - 1;
5585 < 50)<= 93)) {return null;
5586 < 50)<= 93)) {
5587  
5588 < 50)<= 93)) {this.$rowTokens = this.$session.getTokens(this.$row);
5589 < 50)<= 93)) {this.$tokenIndex = 0;
5590 < 50)<= 93)) {
5591  
5592 < 50)<= 93)) {return this.$rowTokens[this.$tokenIndex];
5593 < 50)<= 93)) {
5594 < 50)<= 93)) {this.getCurrentToken = function () {
5595 < 50)<= 93)) {return this.$rowTokens[this.$tokenIndex];
5596 < 50)<= 93)) {
5597 < 50)<= 93)) {this.getCurrentTokenRow = function () {
5598 < 50)<= 93)) {return this.$row;
5599 < 50)<= 93)) {
5600 < 50)<= 93)) {this.getCurrentTokenColumn = function() {
5601 < 50)<= 93)) {var rowTokens = this.$rowTokens;
5602 < 50)<= 93)) {var tokenIndex = this.$tokenIndex;
5603 < 50)<= 93)) {var column = rowTokens[tokenIndex].start;
5604 < 50)<= 93)) {if (column !== undefined)
5605 < 50)<= 93)) {return column;
5606  
5607 < 50)<= 93)) {
5608 < 50)<= 93)) {while (tokenIndex > 0) {
5609 < 50)<= 93)) {
5610 < 50)<= 93)) {
5611 < 50)<= 93)) {
5612  
5613 < 50)<= 93)) {return column;
5614 < 50)<= 93)) {
5615 < 50)<= 93)) {this.getCurrentTokenPosition = function() {
5616 < 50)<= 93)) {return {row: this.$row, column: this.getCurrentTokenColumn()};
5617 < 50)<= 93)) {
5618  
5619 < 50)<= 93)) {
5620  
5621 < 50)<= 93)) {
5622 < 50)<= 93)) {
5623  
5624 < 50)<= 93)) {"ace/mode/behaviour/cstyle",["require","exports","module","ace/lib/oop","ace/mode/behaviour","ace/token_iterator","ace/lib/lang"], function(require, exports, module) {
5625 < 50)<= 93)) {"use strict";
5626  
5627 < 50)<= 93)) {var oop = require("../../lib/oop");
5628 < 50)<= 93)) {var Behaviour = require("../behaviour").Behaviour;
5629 < 50)<= 93)) {var TokenIterator = require("../../token_iterator").TokenIterator;
5630 < 50)<= 93)) {var lang = require("../../lib/lang");
5631  
5632 < 50)<= 93)) {var SAFE_INSERT_IN_TOKENS =
5633 < 50)<= 93)) {"text", "paren.rparen", "punctuation.operator"];
5634 < 50)<= 93)) {var SAFE_INSERT_BEFORE_TOKENS =
5635 < 50)<= 93)) {"text", "paren.rparen", "punctuation.operator", "comment"];
5636  
5637 < 50)<= 93)) {var context;
5638 < 50)<= 93)) {var contextCache = {};
5639 < 50)<= 93)) {var initContext = function(editor) {
5640 < 50)<= 93)) {var id = -1;
5641 < 50)<= 93)) {if (editor.multiSelect) {
5642 < 50)<= 93)) {
5643 < 50)<= 93)) {if (contextCache.rangeCount != editor.multiSelect.rangeCount)
5644 < 50)<= 93)) {
5645 < 50)<= 93)) {
5646 < 50)<= 93)) {if (contextCache[id])
5647 < 50)<= 93)) {return context = contextCache[id];
5648 < 50)<= 93)) {
5649 < 50)<= 93)) {
5650 < 50)<= 93)) {
5651 < 50)<= 93)) {"",
5652 < 50)<= 93)) {
5653 < 50)<= 93)) {
5654 < 50)<= 93)) {"",
5655 < 50)<= 93)) {""
5656 < 50)<= 93)) {
5657 < 50)<= 93)) {
5658  
5659 < 50)<= 93)) {var getWrapped = function(selection, selected, opening, closing) {
5660 < 50)<= 93)) {var rowDiff = selection.end.row - selection.start.row;
5661 < 50)<= 93)) {return {
5662 < 50)<= 93)) {
5663 < 50)<= 93)) {
5664 < 50)<= 93)) {
5665 < 50)<= 93)) {
5666 < 50)<= 93)) {
5667 < 50)<= 93)) {
5668 < 50)<= 93)) {
5669 < 50)<= 93)) {
5670 < 50)<= 93)) {
5671  
5672 < 50)<= 93)) {var CstyleBehaviour = function() {
5673 < 50)<= 93)) {this.add("braces", "insertion", function(state, action, editor, session, text) {
5674 < 50)<= 93)) {var cursor = editor.getCursorPosition();
5675 < 50)<= 93)) {var line = session.doc.getLine(cursor.row);
5676 < 50)<= 93)) {if (text == '{') {
5677 < 50)<= 93)) {
5678 < 50)<= 93)) {var selection = editor.getSelectionRange();
5679 < 50)<= 93)) {var selected = session.doc.getTextRange(selection);
5680 < 50)<= 93)) {if (selected !== "" && selected !== "{" && editor.getWrapBehavioursEnabled()) {
5681 < 50)<= 93)) {return getWrapped(selection, selected, '{', '}');
5682 < 50)<= 93)) {else if (CstyleBehaviour.isSaneInsertion(editor, session)) {
5683 < 50)<= 93)) {if (/[\]\}\)]/.test(line[cursor.column]) || editor.inMultiSelectMode) {
5684 < 50)<= 93)) {"}");
5685 < 50)<= 93)) {return {
5686 < 50)<= 93)) {'{}',
5687 < 50)<= 93)) {
5688 < 50)<= 93)) {
5689 < 50)<= 93)) {else {
5690 < 50)<= 93)) {"{");
5691 < 50)<= 93)) {return {
5692 < 50)<= 93)) {'{',
5693 < 50)<= 93)) {
5694 < 50)<= 93)) {
5695 < 50)<= 93)) {
5696 < 50)<= 93)) {
5697 < 50)<= 93)) {else if (text == '}') {
5698 < 50)<= 93)) {
5699 < 50)<= 93)) {var rightChar = line.substring(cursor.column, cursor.column + 1);
5700 < 50)<= 93)) {if (rightChar == '}') {
5701 < 50)<= 93)) {var matching = session.$findOpeningBracket('}', {column: cursor.column + 1, row: cursor.row});
5702 < 50)<= 93)) {if (matching !== null && CstyleBehaviour.isAutoInsertedClosing(cursor, line, text)) {
5703 < 50)<= 93)) {
5704 < 50)<= 93)) {return {
5705 < 50)<= 93)) {'',
5706 < 50)<= 93)) {
5707 < 50)<= 93)) {
5708 < 50)<= 93)) {
5709 < 50)<= 93)) {
5710 < 50)<= 93)) {else if (text == "\n" || text == "\r\n") {
5711 < 50)<= 93)) {
5712 < 50)<= 93)) {var closing = "";
5713 < 50)<= 93)) {if (CstyleBehaviour.isMaybeInsertedClosing(cursor, line)) {
5714 < 50)<= 93)) {"}", context.maybeInsertedBrackets);
5715 < 50)<= 93)) {
5716 < 50)<= 93)) {
5717 < 50)<= 93)) {var rightChar = line.substring(cursor.column, cursor.column + 1);
5718 < 50)<= 93)) {if (rightChar === '}') {
5719 < 50)<= 93)) {var openBracePos = session.findMatchingBracket({row: cursor.row, column: cursor.column+1}, '}');
5720 < 50)<= 93)) {if (!openBracePos)
5721 < 50)<= 93)) {return null;
5722 < 50)<= 93)) {var next_indent = this.$getIndent(session.getLine(openBracePos.row));
5723 < 50)<= 93)) {else if (closing) {
5724 < 50)<= 93)) {var next_indent = this.$getIndent(line);
5725 < 50)<= 93)) {else {
5726 < 50)<= 93)) {
5727 < 50)<= 93)) {return;
5728 < 50)<= 93)) {
5729 < 50)<= 93)) {var indent = next_indent + session.getTabString();
5730  
5731 < 50)<= 93)) {return {
5732 < 50)<= 93)) {'\n' + indent + '\n' + next_indent + closing,
5733 < 50)<= 93)) {
5734 < 50)<= 93)) {
5735 < 50)<= 93)) {else {
5736 < 50)<= 93)) {
5737 < 50)<= 93)) {
5738 < 50)<= 93)) {
5739  
5740 < 50)<= 93)) {this.add("braces", "deletion", function(state, action, editor, session, range) {
5741 < 50)<= 93)) {var selected = session.doc.getTextRange(range);
5742 < 50)<= 93)) {if (!range.isMultiLine() && selected == '{') {
5743 < 50)<= 93)) {
5744 < 50)<= 93)) {var line = session.doc.getLine(range.start.row);
5745 < 50)<= 93)) {var rightChar = line.substring(range.end.column, range.end.column + 1);
5746 < 50)<= 93)) {if (rightChar == '}') {
5747 < 50)<= 93)) {
5748 < 50)<= 93)) {return range;
5749 < 50)<= 93)) {else {
5750 < 50)<= 93)) {
5751 < 50)<= 93)) {
5752 < 50)<= 93)) {
5753 < 50)<= 93)) {
5754  
5755 < 50)<= 93)) {this.add("parens", "insertion", function(state, action, editor, session, text) {
5756 < 50)<= 93)) {if (text == '(') {
5757 < 50)<= 93)) {
5758 < 50)<= 93)) {var selection = editor.getSelectionRange();
5759 < 50)<= 93)) {var selected = session.doc.getTextRange(selection);
5760 < 50)<= 93)) {if (selected !== "" && editor.getWrapBehavioursEnabled()) {
5761 < 50)<= 93)) {return getWrapped(selection, selected, '(', ')');
5762 < 50)<= 93)) {else if (CstyleBehaviour.isSaneInsertion(editor, session)) {
5763 < 50)<= 93)) {")");
5764 < 50)<= 93)) {return {
5765 < 50)<= 93)) {'()',
5766 < 50)<= 93)) {
5767 < 50)<= 93)) {
5768 < 50)<= 93)) {
5769 < 50)<= 93)) {else if (text == ')') {
5770 < 50)<= 93)) {
5771 < 50)<= 93)) {var cursor = editor.getCursorPosition();
5772 < 50)<= 93)) {var line = session.doc.getLine(cursor.row);
5773 < 50)<= 93)) {var rightChar = line.substring(cursor.column, cursor.column + 1);
5774 < 50)<= 93)) {if (rightChar == ')') {
5775 < 50)<= 93)) {var matching = session.$findOpeningBracket(')', {column: cursor.column + 1, row: cursor.row});
5776 < 50)<= 93)) {if (matching !== null && CstyleBehaviour.isAutoInsertedClosing(cursor, line, text)) {
5777 < 50)<= 93)) {
5778 < 50)<= 93)) {return {
5779 < 50)<= 93)) {'',
5780 < 50)<= 93)) {
5781 < 50)<= 93)) {
5782 < 50)<= 93)) {
5783 < 50)<= 93)) {
5784 < 50)<= 93)) {
5785 < 50)<= 93)) {
5786  
5787 < 50)<= 93)) {this.add("parens", "deletion", function(state, action, editor, session, range) {
5788 < 50)<= 93)) {var selected = session.doc.getTextRange(range);
5789 < 50)<= 93)) {if (!range.isMultiLine() && selected == '(') {
5790 < 50)<= 93)) {
5791 < 50)<= 93)) {var line = session.doc.getLine(range.start.row);
5792 < 50)<= 93)) {var rightChar = line.substring(range.start.column + 1, range.start.column + 2);
5793 < 50)<= 93)) {if (rightChar == ')') {
5794 < 50)<= 93)) {
5795 < 50)<= 93)) {return range;
5796 < 50)<= 93)) {
5797 < 50)<= 93)) {
5798 < 50)<= 93)) {
5799  
5800 < 50)<= 93)) {this.add("brackets", "insertion", function(state, action, editor, session, text) {
5801 < 50)<= 93)) {if (text == '[') {
5802 < 50)<= 93)) {
5803 < 50)<= 93)) {var selection = editor.getSelectionRange();
5804 < 50)<= 93)) {var selected = session.doc.getTextRange(selection);
5805 < 50)<= 93)) {if (selected !== "" && editor.getWrapBehavioursEnabled()) {
5806 < 50)<= 93)) {return getWrapped(selection, selected, '[', ']');
5807 < 50)<= 93)) {else if (CstyleBehaviour.isSaneInsertion(editor, session)) {
5808 < 50)<= 93)) {"]");
5809 < 50)<= 93)) {return {
5810 < 50)<= 93)) {'[]',
5811 < 50)<= 93)) {
5812 < 50)<= 93)) {
5813 < 50)<= 93)) {
5814 < 50)<= 93)) {else if (text == ']') {
5815 < 50)<= 93)) {
5816 < 50)<= 93)) {var cursor = editor.getCursorPosition();
5817 < 50)<= 93)) {var line = session.doc.getLine(cursor.row);
5818 < 50)<= 93)) {var rightChar = line.substring(cursor.column, cursor.column + 1);
5819 < 50)<= 93)) {if (rightChar == ']') {
5820 < 50)<= 93)) {var matching = session.$findOpeningBracket(']', {column: cursor.column + 1, row: cursor.row});
5821 < 50)<= 93)) {if (matching !== null && CstyleBehaviour.isAutoInsertedClosing(cursor, line, text)) {
5822 < 50)<= 93)) {
5823 < 50)<= 93)) {return {
5824 < 50)<= 93)) {'',
5825 < 50)<= 93)) {
5826 < 50)<= 93)) {
5827 < 50)<= 93)) {
5828 < 50)<= 93)) {
5829 < 50)<= 93)) {
5830 < 50)<= 93)) {
5831  
5832 < 50)<= 93)) {this.add("brackets", "deletion", function(state, action, editor, session, range) {
5833 < 50)<= 93)) {var selected = session.doc.getTextRange(range);
5834 < 50)<= 93)) {if (!range.isMultiLine() && selected == '[') {
5835 < 50)<= 93)) {
5836 < 50)<= 93)) {var line = session.doc.getLine(range.start.row);
5837 < 50)<= 93)) {var rightChar = line.substring(range.start.column + 1, range.start.column + 2);
5838 < 50)<= 93)) {if (rightChar == ']') {
5839 < 50)<= 93)) {
5840 < 50)<= 93)) {return range;
5841 < 50)<= 93)) {
5842 < 50)<= 93)) {
5843 < 50)<= 93)) {
5844  
5845 < 50)<= 93)) {this.add("string_dquotes", "insertion", function(state, action, editor, session, text) {
5846 < 50)<= 93)) {if (text == '"' || text == "'") {
5847 < 50)<= 93)) {if (this.lineCommentStart && this.lineCommentStart.indexOf(text) != -1)
5848 < 50)<= 93)) {return;
5849 < 50)<= 93)) {
5850 < 50)<= 93)) {var quote = text;
5851 < 50)<= 93)) {var selection = editor.getSelectionRange();
5852 < 50)<= 93)) {var selected = session.doc.getTextRange(selection);
5853 < 50)<= 93)) {if (selected !== "" && selected !== "'" && selected != '"' && editor.getWrapBehavioursEnabled()) {
5854 < 50)<= 93)) {return getWrapped(selection, selected, quote, quote);
5855 < 50)<= 93)) {else if (!selected) {
5856 < 50)<= 93)) {var cursor = editor.getCursorPosition();
5857 < 50)<= 93)) {var line = session.doc.getLine(cursor.row);
5858 < 50)<= 93)) {var leftChar = line.substring(cursor.column-1, cursor.column);
5859 < 50)<= 93)) {var rightChar = line.substring(cursor.column, cursor.column + 1);
5860  
5861 < 50)<= 93)) {var token = session.getTokenAt(cursor.row, cursor.column);
5862 < 50)<= 93)) {var rightToken = session.getTokenAt(cursor.row, cursor.column + 1);
5863 < 50)<= 93)) {if (leftChar == "\\" && token && /escape/.test(token.type))
5864 < 50)<= 93)) {return null;
5865  
5866 < 50)<= 93)) {var stringBefore = token && /string|escape/.test(token.type);
5867 < 50)<= 93)) {var stringAfter = !rightToken || /string|escape/.test(rightToken.type);
5868  
5869 < 50)<= 93)) {var pair;
5870 < 50)<= 93)) {if (rightChar == quote) {
5871 < 50)<= 93)) {
5872 < 50)<= 93)) {if (pair && /string\.end/.test(rightToken.type))
5873 < 50)<= 93)) {false;
5874 < 50)<= 93)) {else {
5875 < 50)<= 93)) {if (stringBefore && !stringAfter)
5876 < 50)<= 93)) {return null; // wrap string with different quote
5877 < 50)<= 93)) { if (stringBefore && stringAfter)
5878 < 50)<= 93)) {return null; // do not pair quotes inside strings
5879 < 50)<= 93)) { var wordRe = session.$mode.tokenRe;
5880 < 50)<= 93)) {
5881 < 50)<= 93)) {var isWordBefore = wordRe.test(leftChar);
5882 < 50)<= 93)) {
5883 < 50)<= 93)) {var isWordAfter = wordRe.test(leftChar);
5884 < 50)<= 93)) {if (isWordBefore || isWordAfter)
5885 < 50)<= 93)) {return null; // before or after alphanumeric
5886 < 50)<= 93)) { if (rightChar && !/[\s;,.})\]\\]/.test(rightChar))
5887 < 50)<= 93)) {return null; // there is rightChar and it isn't closing
5888 < 50)<= 93)) { pair = true;
5889 < 50)<= 93)) {
5890 < 50)<= 93)) {return {
5891 < 50)<= 93)) {"",
5892 < 50)<= 93)) {
5893 < 50)<= 93)) {
5894 < 50)<= 93)) {
5895 < 50)<= 93)) {
5896 < 50)<= 93)) {
5897  
5898 < 50)<= 93)) {this.add("string_dquotes", "deletion", function(state, action, editor, session, range) {
5899 < 50)<= 93)) {var selected = session.doc.getTextRange(range);
5900 < 50)<= 93)) {if (!range.isMultiLine() && (selected == '"' || selected == "'")) {
5901 < 50)<= 93)) {
5902 < 50)<= 93)) {var line = session.doc.getLine(range.start.row);
5903 < 50)<= 93)) {var rightChar = line.substring(range.start.column + 1, range.start.column + 2);
5904 < 50)<= 93)) {if (rightChar == selected) {
5905 < 50)<= 93)) {
5906 < 50)<= 93)) {return range;
5907 < 50)<= 93)) {
5908 < 50)<= 93)) {
5909 < 50)<= 93)) {
5910  
5911 < 50)<= 93)) {
5912  
5913  
5914 < 50)<= 93)) {function(editor, session) {
5915 < 50)<= 93)) {var cursor = editor.getCursorPosition();
5916 < 50)<= 93)) {var iterator = new TokenIterator(session, cursor.row, cursor.column);
5917 < 50)<= 93)) {if (!this.$matchTokenType(iterator.getCurrentToken() || "text", SAFE_INSERT_IN_TOKENS)) {
5918 < 50)<= 93)) {var iterator2 = new TokenIterator(session, cursor.row, cursor.column + 1);
5919 < 50)<= 93)) {if (!this.$matchTokenType(iterator2.getCurrentToken() || "text", SAFE_INSERT_IN_TOKENS))
5920 < 50)<= 93)) {return false;
5921 < 50)<= 93)) {
5922 < 50)<= 93)) {
5923 < 50)<= 93)) {return iterator.getCurrentTokenRow() !== cursor.row ||
5924 < 50)<= 93)) {this.$matchTokenType(iterator.getCurrentToken() || "text", SAFE_INSERT_BEFORE_TOKENS);
5925 < 50)<= 93)) {
5926  
5927 < 50)<= 93)) {function(token, types) {
5928 < 50)<= 93)) {return types.indexOf(token.type || token) > -1;
5929 < 50)<= 93)) {
5930  
5931 < 50)<= 93)) {function(editor, session, bracket) {
5932 < 50)<= 93)) {var cursor = editor.getCursorPosition();
5933 < 50)<= 93)) {var line = session.doc.getLine(cursor.row);
5934 < 50)<= 93)) {if (!this.isAutoInsertedClosing(cursor, line, context.autoInsertedLineEnd[0]))
5935 < 50)<= 93)) {
5936 < 50)<= 93)) {
5937 < 50)<= 93)) {
5938 < 50)<= 93)) {
5939 < 50)<= 93)) {
5940  
5941 < 50)<= 93)) {function(editor, session, bracket) {
5942 < 50)<= 93)) {var cursor = editor.getCursorPosition();
5943 < 50)<= 93)) {var line = session.doc.getLine(cursor.row);
5944 < 50)<= 93)) {if (!this.isMaybeInsertedClosing(cursor, line))
5945 < 50)<= 93)) {
5946 < 50)<= 93)) {
5947 < 50)<= 93)) {
5948 < 50)<= 93)) {
5949 < 50)<= 93)) {
5950 < 50)<= 93)) {
5951  
5952 < 50)<= 93)) {function(cursor, line, bracket) {
5953 < 50)<= 93)) {return context.autoInsertedBrackets > 0 &&
5954 < 50)<= 93)) {
5955 < 50)<= 93)) {
5956 < 50)<= 93)) {
5957 < 50)<= 93)) {
5958  
5959 < 50)<= 93)) {function(cursor, line) {
5960 < 50)<= 93)) {return context.maybeInsertedBrackets > 0 &&
5961 < 50)<= 93)) {
5962 < 50)<= 93)) {
5963 < 50)<= 93)) {
5964 < 50)<= 93)) {
5965  
5966 < 50)<= 93)) {function() {
5967 < 50)<= 93)) {
5968 < 50)<= 93)) {
5969 < 50)<= 93)) {
5970  
5971 < 50)<= 93)) {function() {
5972 < 50)<= 93)) {if (context) {
5973 < 50)<= 93)) {
5974 < 50)<= 93)) {
5975 < 50)<= 93)) {
5976 < 50)<= 93)) {
5977  
5978  
5979  
5980 < 50)<= 93)) {
5981  
5982 < 50)<= 93)) {
5983 < 50)<= 93)) {
5984  
5985 < 50)<= 93)) {"ace/unicode",["require","exports","module"], function(require, exports, module) {
5986 < 50)<= 93)) {"use strict";
5987 < 50)<= 93)) {
5988  
5989 < 50)<= 93)) {
5990 < 50)<= 93)) {"0041-005A0061-007A00AA00B500BA00C0-00D600D8-00F600F8-02C102C6-02D102E0-02E402EC02EE0370-037403760377037A-037D03860388-038A038C038E-03A103A3-03F503F7-0481048A-05250531-055605590561-058705D0-05EA05F0-05F20621-064A066E066F0671-06D306D506E506E606EE06EF06FA-06FC06FF07100712-072F074D-07A507B107CA-07EA07F407F507FA0800-0815081A082408280904-0939093D09500958-0961097109720979-097F0985-098C098F09900993-09A809AA-09B009B209B6-09B909BD09CE09DC09DD09DF-09E109F009F10A05-0A0A0A0F0A100A13-0A280A2A-0A300A320A330A350A360A380A390A59-0A5C0A5E0A72-0A740A85-0A8D0A8F-0A910A93-0AA80AAA-0AB00AB20AB30AB5-0AB90ABD0AD00AE00AE10B05-0B0C0B0F0B100B13-0B280B2A-0B300B320B330B35-0B390B3D0B5C0B5D0B5F-0B610B710B830B85-0B8A0B8E-0B900B92-0B950B990B9A0B9C0B9E0B9F0BA30BA40BA8-0BAA0BAE-0BB90BD00C05-0C0C0C0E-0C100C12-0C280C2A-0C330C35-0C390C3D0C580C590C600C610C85-0C8C0C8E-0C900C92-0CA80CAA-0CB30CB5-0CB90CBD0CDE0CE00CE10D05-0D0C0D0E-0D100D12-0D280D2A-0D390D3D0D600D610D7A-0D7F0D85-0D960D9A-0DB10DB3-0DBB0DBD0DC0-0DC60E01-0E300E320E330E40-0E460E810E820E840E870E880E8A0E8D0E94-0E970E99-0E9F0EA1-0EA30EA50EA70EAA0EAB0EAD-0EB00EB20EB30EBD0EC0-0EC40EC60EDC0EDD0F000F40-0F470F49-0F6C0F88-0F8B1000-102A103F1050-1055105A-105D106110651066106E-10701075-1081108E10A0-10C510D0-10FA10FC1100-1248124A-124D1250-12561258125A-125D1260-1288128A-128D1290-12B012B2-12B512B8-12BE12C012C2-12C512C8-12D612D8-13101312-13151318-135A1380-138F13A0-13F41401-166C166F-167F1681-169A16A0-16EA1700-170C170E-17111720-17311740-17511760-176C176E-17701780-17B317D717DC1820-18771880-18A818AA18B0-18F51900-191C1950-196D1970-19741980-19AB19C1-19C71A00-1A161A20-1A541AA71B05-1B331B45-1B4B1B83-1BA01BAE1BAF1C00-1C231C4D-1C4F1C5A-1C7D1CE9-1CEC1CEE-1CF11D00-1DBF1E00-1F151F18-1F1D1F20-1F451F48-1F4D1F50-1F571F591F5B1F5D1F5F-1F7D1F80-1FB41FB6-1FBC1FBE1FC2-1FC41FC6-1FCC1FD0-1FD31FD6-1FDB1FE0-1FEC1FF2-1FF41FF6-1FFC2071207F2090-209421022107210A-211321152119-211D212421262128212A-212D212F-2139213C-213F2145-2149214E218321842C00-2C2E2C30-2C5E2C60-2CE42CEB-2CEE2D00-2D252D30-2D652D6F2D80-2D962DA0-2DA62DA8-2DAE2DB0-2DB62DB8-2DBE2DC0-2DC62DC8-2DCE2DD0-2DD62DD8-2DDE2E2F300530063031-3035303B303C3041-3096309D-309F30A1-30FA30FC-30FF3105-312D3131-318E31A0-31B731F0-31FF3400-4DB54E00-9FCBA000-A48CA4D0-A4FDA500-A60CA610-A61FA62AA62BA640-A65FA662-A66EA67F-A697A6A0-A6E5A717-A71FA722-A788A78BA78CA7FB-A801A803-A805A807-A80AA80C-A822A840-A873A882-A8B3A8F2-A8F7A8FBA90A-A925A930-A946A960-A97CA984-A9B2A9CFAA00-AA28AA40-AA42AA44-AA4BAA60-AA76AA7AAA80-AAAFAAB1AAB5AAB6AAB9-AABDAAC0AAC2AADB-AADDABC0-ABE2AC00-D7A3D7B0-D7C6D7CB-D7FBF900-FA2DFA30-FA6DFA70-FAD9FB00-FB06FB13-FB17FB1DFB1F-FB28FB2A-FB36FB38-FB3CFB3EFB40FB41FB43FB44FB46-FBB1FBD3-FD3DFD50-FD8FFD92-FDC7FDF0-FDFBFE70-FE74FE76-FEFCFF21-FF3AFF41-FF5AFF66-FFBEFFC2-FFC7FFCA-FFCFFFD2-FFD7FFDA-FFDC",
5991 < 50)<= 93)) {"0061-007A00AA00B500BA00DF-00F600F8-00FF01010103010501070109010B010D010F01110113011501170119011B011D011F01210123012501270129012B012D012F01310133013501370138013A013C013E014001420144014601480149014B014D014F01510153015501570159015B015D015F01610163016501670169016B016D016F0171017301750177017A017C017E-0180018301850188018C018D019201950199-019B019E01A101A301A501A801AA01AB01AD01B001B401B601B901BA01BD-01BF01C601C901CC01CE01D001D201D401D601D801DA01DC01DD01DF01E101E301E501E701E901EB01ED01EF01F001F301F501F901FB01FD01FF02010203020502070209020B020D020F02110213021502170219021B021D021F02210223022502270229022B022D022F02310233-0239023C023F0240024202470249024B024D024F-02930295-02AF037103730377037B-037D039003AC-03CE03D003D103D5-03D703D903DB03DD03DF03E103E303E503E703E903EB03ED03EF-03F303F503F803FB03FC0430-045F04610463046504670469046B046D046F04710473047504770479047B047D047F0481048B048D048F04910493049504970499049B049D049F04A104A304A504A704A904AB04AD04AF04B104B304B504B704B904BB04BD04BF04C204C404C604C804CA04CC04CE04CF04D104D304D504D704D904DB04DD04DF04E104E304E504E704E904EB04ED04EF04F104F304F504F704F904FB04FD04FF05010503050505070509050B050D050F05110513051505170519051B051D051F0521052305250561-05871D00-1D2B1D62-1D771D79-1D9A1E011E031E051E071E091E0B1E0D1E0F1E111E131E151E171E191E1B1E1D1E1F1E211E231E251E271E291E2B1E2D1E2F1E311E331E351E371E391E3B1E3D1E3F1E411E431E451E471E491E4B1E4D1E4F1E511E531E551E571E591E5B1E5D1E5F1E611E631E651E671E691E6B1E6D1E6F1E711E731E751E771E791E7B1E7D1E7F1E811E831E851E871E891E8B1E8D1E8F1E911E931E95-1E9D1E9F1EA11EA31EA51EA71EA91EAB1EAD1EAF1EB11EB31EB51EB71EB91EBB1EBD1EBF1EC11EC31EC51EC71EC91ECB1ECD1ECF1ED11ED31ED51ED71ED91EDB1EDD1EDF1EE11EE31EE51EE71EE91EEB1EED1EEF1EF11EF31EF51EF71EF91EFB1EFD1EFF-1F071F10-1F151F20-1F271F30-1F371F40-1F451F50-1F571F60-1F671F70-1F7D1F80-1F871F90-1F971FA0-1FA71FB0-1FB41FB61FB71FBE1FC2-1FC41FC61FC71FD0-1FD31FD61FD71FE0-1FE71FF2-1FF41FF61FF7210A210E210F2113212F21342139213C213D2146-2149214E21842C30-2C5E2C612C652C662C682C6A2C6C2C712C732C742C76-2C7C2C812C832C852C872C892C8B2C8D2C8F2C912C932C952C972C992C9B2C9D2C9F2CA12CA32CA52CA72CA92CAB2CAD2CAF2CB12CB32CB52CB72CB92CBB2CBD2CBF2CC12CC32CC52CC72CC92CCB2CCD2CCF2CD12CD32CD52CD72CD92CDB2CDD2CDF2CE12CE32CE42CEC2CEE2D00-2D25A641A643A645A647A649A64BA64DA64FA651A653A655A657A659A65BA65DA65FA663A665A667A669A66BA66DA681A683A685A687A689A68BA68DA68FA691A693A695A697A723A725A727A729A72BA72DA72F-A731A733A735A737A739A73BA73DA73FA741A743A745A747A749A74BA74DA74FA751A753A755A757A759A75BA75DA75FA761A763A765A767A769A76BA76DA76FA771-A778A77AA77CA77FA781A783A785A787A78CFB00-FB06FB13-FB17FF41-FF5A",
5992 < 50)<= 93)) {"0041-005A00C0-00D600D8-00DE01000102010401060108010A010C010E01100112011401160118011A011C011E01200122012401260128012A012C012E01300132013401360139013B013D013F0141014301450147014A014C014E01500152015401560158015A015C015E01600162016401660168016A016C016E017001720174017601780179017B017D018101820184018601870189-018B018E-0191019301940196-0198019C019D019F01A001A201A401A601A701A901AC01AE01AF01B1-01B301B501B701B801BC01C401C701CA01CD01CF01D101D301D501D701D901DB01DE01E001E201E401E601E801EA01EC01EE01F101F401F6-01F801FA01FC01FE02000202020402060208020A020C020E02100212021402160218021A021C021E02200222022402260228022A022C022E02300232023A023B023D023E02410243-02460248024A024C024E03700372037603860388-038A038C038E038F0391-03A103A3-03AB03CF03D2-03D403D803DA03DC03DE03E003E203E403E603E803EA03EC03EE03F403F703F903FA03FD-042F04600462046404660468046A046C046E04700472047404760478047A047C047E0480048A048C048E04900492049404960498049A049C049E04A004A204A404A604A804AA04AC04AE04B004B204B404B604B804BA04BC04BE04C004C104C304C504C704C904CB04CD04D004D204D404D604D804DA04DC04DE04E004E204E404E604E804EA04EC04EE04F004F204F404F604F804FA04FC04FE05000502050405060508050A050C050E05100512051405160518051A051C051E0520052205240531-055610A0-10C51E001E021E041E061E081E0A1E0C1E0E1E101E121E141E161E181E1A1E1C1E1E1E201E221E241E261E281E2A1E2C1E2E1E301E321E341E361E381E3A1E3C1E3E1E401E421E441E461E481E4A1E4C1E4E1E501E521E541E561E581E5A1E5C1E5E1E601E621E641E661E681E6A1E6C1E6E1E701E721E741E761E781E7A1E7C1E7E1E801E821E841E861E881E8A1E8C1E8E1E901E921E941E9E1EA01EA21EA41EA61EA81EAA1EAC1EAE1EB01EB21EB41EB61EB81EBA1EBC1EBE1EC01EC21EC41EC61EC81ECA1ECC1ECE1ED01ED21ED41ED61ED81EDA1EDC1EDE1EE01EE21EE41EE61EE81EEA1EEC1EEE1EF01EF21EF41EF61EF81EFA1EFC1EFE1F08-1F0F1F18-1F1D1F28-1F2F1F38-1F3F1F48-1F4D1F591F5B1F5D1F5F1F68-1F6F1FB8-1FBB1FC8-1FCB1FD8-1FDB1FE8-1FEC1FF8-1FFB21022107210B-210D2110-211221152119-211D212421262128212A-212D2130-2133213E213F214521832C00-2C2E2C602C62-2C642C672C692C6B2C6D-2C702C722C752C7E-2C802C822C842C862C882C8A2C8C2C8E2C902C922C942C962C982C9A2C9C2C9E2CA02CA22CA42CA62CA82CAA2CAC2CAE2CB02CB22CB42CB62CB82CBA2CBC2CBE2CC02CC22CC42CC62CC82CCA2CCC2CCE2CD02CD22CD42CD62CD82CDA2CDC2CDE2CE02CE22CEB2CEDA640A642A644A646A648A64AA64CA64EA650A652A654A656A658A65AA65CA65EA662A664A666A668A66AA66CA680A682A684A686A688A68AA68CA68EA690A692A694A696A722A724A726A728A72AA72CA72EA732A734A736A738A73AA73CA73EA740A742A744A746A748A74AA74CA74EA750A752A754A756A758A75AA75CA75EA760A762A764A766A768A76AA76CA76EA779A77BA77DA77EA780A782A784A786A78BFF21-FF3A",
5993 < 50)<= 93)) {"01C501C801CB01F21F88-1F8F1F98-1F9F1FA8-1FAF1FBC1FCC1FFC",
5994 < 50)<= 93)) {"02B0-02C102C6-02D102E0-02E402EC02EE0374037A0559064006E506E607F407F507FA081A0824082809710E460EC610FC17D718431AA71C78-1C7D1D2C-1D611D781D9B-1DBF2071207F2090-20942C7D2D6F2E2F30053031-3035303B309D309E30FC-30FEA015A4F8-A4FDA60CA67FA717-A71FA770A788A9CFAA70AADDFF70FF9EFF9F",
5995 < 50)<= 93)) {"01BB01C0-01C3029405D0-05EA05F0-05F20621-063F0641-064A066E066F0671-06D306D506EE06EF06FA-06FC06FF07100712-072F074D-07A507B107CA-07EA0800-08150904-0939093D09500958-096109720979-097F0985-098C098F09900993-09A809AA-09B009B209B6-09B909BD09CE09DC09DD09DF-09E109F009F10A05-0A0A0A0F0A100A13-0A280A2A-0A300A320A330A350A360A380A390A59-0A5C0A5E0A72-0A740A85-0A8D0A8F-0A910A93-0AA80AAA-0AB00AB20AB30AB5-0AB90ABD0AD00AE00AE10B05-0B0C0B0F0B100B13-0B280B2A-0B300B320B330B35-0B390B3D0B5C0B5D0B5F-0B610B710B830B85-0B8A0B8E-0B900B92-0B950B990B9A0B9C0B9E0B9F0BA30BA40BA8-0BAA0BAE-0BB90BD00C05-0C0C0C0E-0C100C12-0C280C2A-0C330C35-0C390C3D0C580C590C600C610C85-0C8C0C8E-0C900C92-0CA80CAA-0CB30CB5-0CB90CBD0CDE0CE00CE10D05-0D0C0D0E-0D100D12-0D280D2A-0D390D3D0D600D610D7A-0D7F0D85-0D960D9A-0DB10DB3-0DBB0DBD0DC0-0DC60E01-0E300E320E330E40-0E450E810E820E840E870E880E8A0E8D0E94-0E970E99-0E9F0EA1-0EA30EA50EA70EAA0EAB0EAD-0EB00EB20EB30EBD0EC0-0EC40EDC0EDD0F000F40-0F470F49-0F6C0F88-0F8B1000-102A103F1050-1055105A-105D106110651066106E-10701075-1081108E10D0-10FA1100-1248124A-124D1250-12561258125A-125D1260-1288128A-128D1290-12B012B2-12B512B8-12BE12C012C2-12C512C8-12D612D8-13101312-13151318-135A1380-138F13A0-13F41401-166C166F-167F1681-169A16A0-16EA1700-170C170E-17111720-17311740-17511760-176C176E-17701780-17B317DC1820-18421844-18771880-18A818AA18B0-18F51900-191C1950-196D1970-19741980-19AB19C1-19C71A00-1A161A20-1A541B05-1B331B45-1B4B1B83-1BA01BAE1BAF1C00-1C231C4D-1C4F1C5A-1C771CE9-1CEC1CEE-1CF12135-21382D30-2D652D80-2D962DA0-2DA62DA8-2DAE2DB0-2DB62DB8-2DBE2DC0-2DC62DC8-2DCE2DD0-2DD62DD8-2DDE3006303C3041-3096309F30A1-30FA30FF3105-312D3131-318E31A0-31B731F0-31FF3400-4DB54E00-9FCBA000-A014A016-A48CA4D0-A4F7A500-A60BA610-A61FA62AA62BA66EA6A0-A6E5A7FB-A801A803-A805A807-A80AA80C-A822A840-A873A882-A8B3A8F2-A8F7A8FBA90A-A925A930-A946A960-A97CA984-A9B2AA00-AA28AA40-AA42AA44-AA4BAA60-AA6FAA71-AA76AA7AAA80-AAAFAAB1AAB5AAB6AAB9-AABDAAC0AAC2AADBAADCABC0-ABE2AC00-D7A3D7B0-D7C6D7CB-D7FBF900-FA2DFA30-FA6DFA70-FAD9FB1DFB1F-FB28FB2A-FB36FB38-FB3CFB3EFB40FB41FB43FB44FB46-FBB1FBD3-FD3DFD50-FD8FFD92-FDC7FDF0-FDFBFE70-FE74FE76-FEFCFF66-FF6FFF71-FF9DFFA0-FFBEFFC2-FFC7FFCA-FFCFFFD2-FFD7FFDA-FFDC",
5996 < 50)<= 93)) {"0300-036F0483-04890591-05BD05BF05C105C205C405C505C70610-061A064B-065E067006D6-06DC06DE-06E406E706E806EA-06ED07110730-074A07A6-07B007EB-07F30816-0819081B-08230825-08270829-082D0900-0903093C093E-094E0951-0955096209630981-098309BC09BE-09C409C709C809CB-09CD09D709E209E30A01-0A030A3C0A3E-0A420A470A480A4B-0A4D0A510A700A710A750A81-0A830ABC0ABE-0AC50AC7-0AC90ACB-0ACD0AE20AE30B01-0B030B3C0B3E-0B440B470B480B4B-0B4D0B560B570B620B630B820BBE-0BC20BC6-0BC80BCA-0BCD0BD70C01-0C030C3E-0C440C46-0C480C4A-0C4D0C550C560C620C630C820C830CBC0CBE-0CC40CC6-0CC80CCA-0CCD0CD50CD60CE20CE30D020D030D3E-0D440D46-0D480D4A-0D4D0D570D620D630D820D830DCA0DCF-0DD40DD60DD8-0DDF0DF20DF30E310E34-0E3A0E47-0E4E0EB10EB4-0EB90EBB0EBC0EC8-0ECD0F180F190F350F370F390F3E0F3F0F71-0F840F860F870F90-0F970F99-0FBC0FC6102B-103E1056-1059105E-10601062-10641067-106D1071-10741082-108D108F109A-109D135F1712-17141732-1734175217531772177317B6-17D317DD180B-180D18A91920-192B1930-193B19B0-19C019C819C91A17-1A1B1A55-1A5E1A60-1A7C1A7F1B00-1B041B34-1B441B6B-1B731B80-1B821BA1-1BAA1C24-1C371CD0-1CD21CD4-1CE81CED1CF21DC0-1DE61DFD-1DFF20D0-20F02CEF-2CF12DE0-2DFF302A-302F3099309AA66F-A672A67CA67DA6F0A6F1A802A806A80BA823-A827A880A881A8B4-A8C4A8E0-A8F1A926-A92DA947-A953A980-A983A9B3-A9C0AA29-AA36AA43AA4CAA4DAA7BAAB0AAB2-AAB4AAB7AAB8AABEAABFAAC1ABE3-ABEAABECABEDFB1EFE00-FE0FFE20-FE26",
5997 < 50)<= 93)) {"0300-036F0483-04870591-05BD05BF05C105C205C405C505C70610-061A064B-065E067006D6-06DC06DF-06E406E706E806EA-06ED07110730-074A07A6-07B007EB-07F30816-0819081B-08230825-08270829-082D0900-0902093C0941-0948094D0951-095509620963098109BC09C1-09C409CD09E209E30A010A020A3C0A410A420A470A480A4B-0A4D0A510A700A710A750A810A820ABC0AC1-0AC50AC70AC80ACD0AE20AE30B010B3C0B3F0B41-0B440B4D0B560B620B630B820BC00BCD0C3E-0C400C46-0C480C4A-0C4D0C550C560C620C630CBC0CBF0CC60CCC0CCD0CE20CE30D41-0D440D4D0D620D630DCA0DD2-0DD40DD60E310E34-0E3A0E47-0E4E0EB10EB4-0EB90EBB0EBC0EC8-0ECD0F180F190F350F370F390F71-0F7E0F80-0F840F860F870F90-0F970F99-0FBC0FC6102D-10301032-10371039103A103D103E10581059105E-10601071-1074108210851086108D109D135F1712-17141732-1734175217531772177317B7-17BD17C617C9-17D317DD180B-180D18A91920-19221927192819321939-193B1A171A181A561A58-1A5E1A601A621A65-1A6C1A73-1A7C1A7F1B00-1B031B341B36-1B3A1B3C1B421B6B-1B731B801B811BA2-1BA51BA81BA91C2C-1C331C361C371CD0-1CD21CD4-1CE01CE2-1CE81CED1DC0-1DE61DFD-1DFF20D0-20DC20E120E5-20F02CEF-2CF12DE0-2DFF302A-302F3099309AA66FA67CA67DA6F0A6F1A802A806A80BA825A826A8C4A8E0-A8F1A926-A92DA947-A951A980-A982A9B3A9B6-A9B9A9BCAA29-AA2EAA31AA32AA35AA36AA43AA4CAAB0AAB2-AAB4AAB7AAB8AABEAABFAAC1ABE5ABE8ABEDFB1EFE00-FE0FFE20-FE26",
5998 < 50)<= 93)) {"0903093E-09400949-094C094E0982098309BE-09C009C709C809CB09CC09D70A030A3E-0A400A830ABE-0AC00AC90ACB0ACC0B020B030B3E0B400B470B480B4B0B4C0B570BBE0BBF0BC10BC20BC6-0BC80BCA-0BCC0BD70C01-0C030C41-0C440C820C830CBE0CC0-0CC40CC70CC80CCA0CCB0CD50CD60D020D030D3E-0D400D46-0D480D4A-0D4C0D570D820D830DCF-0DD10DD8-0DDF0DF20DF30F3E0F3F0F7F102B102C10311038103B103C105610571062-10641067-106D108310841087-108C108F109A-109C17B617BE-17C517C717C81923-19261929-192B193019311933-193819B0-19C019C819C91A19-1A1B1A551A571A611A631A641A6D-1A721B041B351B3B1B3D-1B411B431B441B821BA11BA61BA71BAA1C24-1C2B1C341C351CE11CF2A823A824A827A880A881A8B4-A8C3A952A953A983A9B4A9B5A9BAA9BBA9BD-A9C0AA2FAA30AA33AA34AA4DAA7BABE3ABE4ABE6ABE7ABE9ABEAABEC",
5999 < 50)<= 93)) {"0488048906DE20DD-20E020E2-20E4A670-A672",
6000 < 50)<= 93)) {"0030-003900B200B300B900BC-00BE0660-066906F0-06F907C0-07C90966-096F09E6-09EF09F4-09F90A66-0A6F0AE6-0AEF0B66-0B6F0BE6-0BF20C66-0C6F0C78-0C7E0CE6-0CEF0D66-0D750E50-0E590ED0-0ED90F20-0F331040-10491090-10991369-137C16EE-16F017E0-17E917F0-17F91810-18191946-194F19D0-19DA1A80-1A891A90-1A991B50-1B591BB0-1BB91C40-1C491C50-1C5920702074-20792080-20892150-21822185-21892460-249B24EA-24FF2776-27932CFD30073021-30293038-303A3192-31953220-32293251-325F3280-328932B1-32BFA620-A629A6E6-A6EFA830-A835A8D0-A8D9A900-A909A9D0-A9D9AA50-AA59ABF0-ABF9FF10-FF19",
6001 < 50)<= 93)) {"0030-00390660-066906F0-06F907C0-07C90966-096F09E6-09EF0A66-0A6F0AE6-0AEF0B66-0B6F0BE6-0BEF0C66-0C6F0CE6-0CEF0D66-0D6F0E50-0E590ED0-0ED90F20-0F291040-10491090-109917E0-17E91810-18191946-194F19D0-19DA1A80-1A891A90-1A991B50-1B591BB0-1BB91C40-1C491C50-1C59A620-A629A8D0-A8D9A900-A909A9D0-A9D9AA50-AA59ABF0-ABF9FF10-FF19",
6002 < 50)<= 93)) {"16EE-16F02160-21822185-218830073021-30293038-303AA6E6-A6EF",
6003 < 50)<= 93)) {"00B200B300B900BC-00BE09F4-09F90BF0-0BF20C78-0C7E0D70-0D750F2A-0F331369-137C17F0-17F920702074-20792080-20892150-215F21892460-249B24EA-24FF2776-27932CFD3192-31953220-32293251-325F3280-328932B1-32BFA830-A835",
6004 < 50)<= 93)) {"0021-00230025-002A002C-002F003A003B003F0040005B-005D005F007B007D00A100AB00B700BB00BF037E0387055A-055F0589058A05BE05C005C305C605F305F40609060A060C060D061B061E061F066A-066D06D40700-070D07F7-07F90830-083E0964096509700DF40E4F0E5A0E5B0F04-0F120F3A-0F3D0F850FD0-0FD4104A-104F10FB1361-13681400166D166E169B169C16EB-16ED1735173617D4-17D617D8-17DA1800-180A1944194519DE19DF1A1E1A1F1AA0-1AA61AA8-1AAD1B5A-1B601C3B-1C3F1C7E1C7F1CD32010-20272030-20432045-20512053-205E207D207E208D208E2329232A2768-277527C527C627E6-27EF2983-299829D8-29DB29FC29FD2CF9-2CFC2CFE2CFF2E00-2E2E2E302E313001-30033008-30113014-301F3030303D30A030FBA4FEA4FFA60D-A60FA673A67EA6F2-A6F7A874-A877A8CEA8CFA8F8-A8FAA92EA92FA95FA9C1-A9CDA9DEA9DFAA5C-AA5FAADEAADFABEBFD3EFD3FFE10-FE19FE30-FE52FE54-FE61FE63FE68FE6AFE6BFF01-FF03FF05-FF0AFF0C-FF0FFF1AFF1BFF1FFF20FF3B-FF3DFF3FFF5BFF5DFF5F-FF65",
6005 < 50)<= 93)) {"002D058A05BE140018062010-20152E172E1A301C303030A0FE31FE32FE58FE63FF0D",
6006 < 50)<= 93)) {"0028005B007B0F3A0F3C169B201A201E2045207D208D23292768276A276C276E27702772277427C527E627E827EA27EC27EE2983298529872989298B298D298F299129932995299729D829DA29FC2E222E242E262E283008300A300C300E3010301430163018301A301DFD3EFE17FE35FE37FE39FE3BFE3DFE3FFE41FE43FE47FE59FE5BFE5DFF08FF3BFF5BFF5FFF62",
6007 < 50)<= 93)) {"0029005D007D0F3B0F3D169C2046207E208E232A2769276B276D276F27712773277527C627E727E927EB27ED27EF298429862988298A298C298E2990299229942996299829D929DB29FD2E232E252E272E293009300B300D300F3011301530173019301B301E301FFD3FFE18FE36FE38FE3AFE3CFE3EFE40FE42FE44FE48FE5AFE5CFE5EFF09FF3DFF5DFF60FF63",
6008 < 50)<= 93)) {"00AB2018201B201C201F20392E022E042E092E0C2E1C2E20",
6009 < 50)<= 93)) {"00BB2019201D203A2E032E052E0A2E0D2E1D2E21",
6010 < 50)<= 93)) {"005F203F20402054FE33FE34FE4D-FE4FFF3F",
6011 < 50)<= 93)) {"0021-00230025-0027002A002C002E002F003A003B003F0040005C00A100B700BF037E0387055A-055F058905C005C305C605F305F40609060A060C060D061B061E061F066A-066D06D40700-070D07F7-07F90830-083E0964096509700DF40E4F0E5A0E5B0F04-0F120F850FD0-0FD4104A-104F10FB1361-1368166D166E16EB-16ED1735173617D4-17D617D8-17DA1800-18051807-180A1944194519DE19DF1A1E1A1F1AA0-1AA61AA8-1AAD1B5A-1B601C3B-1C3F1C7E1C7F1CD3201620172020-20272030-2038203B-203E2041-20432047-205120532055-205E2CF9-2CFC2CFE2CFF2E002E012E06-2E082E0B2E0E-2E162E182E192E1B2E1E2E1F2E2A-2E2E2E302E313001-3003303D30FBA4FEA4FFA60D-A60FA673A67EA6F2-A6F7A874-A877A8CEA8CFA8F8-A8FAA92EA92FA95FA9C1-A9CDA9DEA9DFAA5C-AA5FAADEAADFABEBFE10-FE16FE19FE30FE45FE46FE49-FE4CFE50-FE52FE54-FE57FE5F-FE61FE68FE6AFE6BFF01-FF03FF05-FF07FF0AFF0CFF0EFF0FFF1AFF1BFF1FFF20FF3CFF61FF64FF65",
6012 < 50)<= 93)) {"0024002B003C-003E005E0060007C007E00A2-00A900AC00AE-00B100B400B600B800D700F702C2-02C502D2-02DF02E5-02EB02ED02EF-02FF03750384038503F604820606-0608060B060E060F06E906FD06FE07F609F209F309FA09FB0AF10B700BF3-0BFA0C7F0CF10CF20D790E3F0F01-0F030F13-0F170F1A-0F1F0F340F360F380FBE-0FC50FC7-0FCC0FCE0FCF0FD5-0FD8109E109F13601390-139917DB194019E0-19FF1B61-1B6A1B74-1B7C1FBD1FBF-1FC11FCD-1FCF1FDD-1FDF1FED-1FEF1FFD1FFE20442052207A-207C208A-208C20A0-20B8210021012103-21062108210921142116-2118211E-2123212521272129212E213A213B2140-2144214A-214D214F2190-2328232B-23E82400-24262440-244A249C-24E92500-26CD26CF-26E126E326E8-26FF2701-27042706-2709270C-27272729-274B274D274F-27522756-275E2761-276727942798-27AF27B1-27BE27C0-27C427C7-27CA27CC27D0-27E527F0-29822999-29D729DC-29FB29FE-2B4C2B50-2B592CE5-2CEA2E80-2E992E9B-2EF32F00-2FD52FF0-2FFB300430123013302030363037303E303F309B309C319031913196-319F31C0-31E33200-321E322A-32503260-327F328A-32B032C0-32FE3300-33FF4DC0-4DFFA490-A4C6A700-A716A720A721A789A78AA828-A82BA836-A839AA77-AA79FB29FDFCFDFDFE62FE64-FE66FE69FF04FF0BFF1C-FF1EFF3EFF40FF5CFF5EFFE0-FFE6FFE8-FFEEFFFCFFFD",
6013 < 50)<= 93)) {"002B003C-003E007C007E00AC00B100D700F703F60606-060820442052207A-207C208A-208C2140-2144214B2190-2194219A219B21A021A321A621AE21CE21CF21D221D421F4-22FF2308-230B23202321237C239B-23B323DC-23E125B725C125F8-25FF266F27C0-27C427C7-27CA27CC27D0-27E527F0-27FF2900-29822999-29D729DC-29FB29FE-2AFF2B30-2B442B47-2B4CFB29FE62FE64-FE66FF0BFF1C-FF1EFF5CFF5EFFE2FFE9-FFEC",
6014 < 50)<= 93)) {"002400A2-00A5060B09F209F309FB0AF10BF90E3F17DB20A0-20B8A838FDFCFE69FF04FFE0FFE1FFE5FFE6",
6015 < 50)<= 93)) {"005E006000A800AF00B400B802C2-02C502D2-02DF02E5-02EB02ED02EF-02FF0375038403851FBD1FBF-1FC11FCD-1FCF1FDD-1FDF1FED-1FEF1FFD1FFE309B309CA700-A716A720A721A789A78AFF3EFF40FFE3",
6016 < 50)<= 93)) {"00A600A700A900AE00B000B60482060E060F06E906FD06FE07F609FA0B700BF3-0BF80BFA0C7F0CF10CF20D790F01-0F030F13-0F170F1A-0F1F0F340F360F380FBE-0FC50FC7-0FCC0FCE0FCF0FD5-0FD8109E109F13601390-1399194019E0-19FF1B61-1B6A1B74-1B7C210021012103-21062108210921142116-2118211E-2123212521272129212E213A213B214A214C214D214F2195-2199219C-219F21A121A221A421A521A7-21AD21AF-21CD21D021D121D321D5-21F32300-2307230C-231F2322-2328232B-237B237D-239A23B4-23DB23E2-23E82400-24262440-244A249C-24E92500-25B625B8-25C025C2-25F72600-266E2670-26CD26CF-26E126E326E8-26FF2701-27042706-2709270C-27272729-274B274D274F-27522756-275E2761-276727942798-27AF27B1-27BE2800-28FF2B00-2B2F2B452B462B50-2B592CE5-2CEA2E80-2E992E9B-2EF32F00-2FD52FF0-2FFB300430123013302030363037303E303F319031913196-319F31C0-31E33200-321E322A-32503260-327F328A-32B032C0-32FE3300-33FF4DC0-4DFFA490-A4C6A828-A82BA836A837A839AA77-AA79FDFDFFE4FFE8FFEDFFEEFFFCFFFD",
6017 < 50)<= 93)) {"002000A01680180E2000-200A20282029202F205F3000",
6018 < 50)<= 93)) {"002000A01680180E2000-200A202F205F3000",
6019 < 50)<= 93)) {"2028",
6020 < 50)<= 93)) {"2029",
6021 < 50)<= 93)) {"0000-001F007F-009F00AD03780379037F-0383038B038D03A20526-05300557055805600588058B-059005C8-05CF05EB-05EF05F5-0605061C061D0620065F06DD070E070F074B074C07B2-07BF07FB-07FF082E082F083F-08FF093A093B094F095609570973-097809800984098D098E0991099209A909B109B3-09B509BA09BB09C509C609C909CA09CF-09D609D8-09DB09DE09E409E509FC-0A000A040A0B-0A0E0A110A120A290A310A340A370A3A0A3B0A3D0A43-0A460A490A4A0A4E-0A500A52-0A580A5D0A5F-0A650A76-0A800A840A8E0A920AA90AB10AB40ABA0ABB0AC60ACA0ACE0ACF0AD1-0ADF0AE40AE50AF00AF2-0B000B040B0D0B0E0B110B120B290B310B340B3A0B3B0B450B460B490B4A0B4E-0B550B58-0B5B0B5E0B640B650B72-0B810B840B8B-0B8D0B910B96-0B980B9B0B9D0BA0-0BA20BA5-0BA70BAB-0BAD0BBA-0BBD0BC3-0BC50BC90BCE0BCF0BD1-0BD60BD8-0BE50BFB-0C000C040C0D0C110C290C340C3A-0C3C0C450C490C4E-0C540C570C5A-0C5F0C640C650C70-0C770C800C810C840C8D0C910CA90CB40CBA0CBB0CC50CC90CCE-0CD40CD7-0CDD0CDF0CE40CE50CF00CF3-0D010D040D0D0D110D290D3A-0D3C0D450D490D4E-0D560D58-0D5F0D640D650D76-0D780D800D810D840D97-0D990DB20DBC0DBE0DBF0DC7-0DC90DCB-0DCE0DD50DD70DE0-0DF10DF5-0E000E3B-0E3E0E5C-0E800E830E850E860E890E8B0E8C0E8E-0E930E980EA00EA40EA60EA80EA90EAC0EBA0EBE0EBF0EC50EC70ECE0ECF0EDA0EDB0EDE-0EFF0F480F6D-0F700F8C-0F8F0F980FBD0FCD0FD9-0FFF10C6-10CF10FD-10FF1249124E124F12571259125E125F1289128E128F12B112B612B712BF12C112C612C712D7131113161317135B-135E137D-137F139A-139F13F5-13FF169D-169F16F1-16FF170D1715-171F1737-173F1754-175F176D17711774-177F17B417B517DE17DF17EA-17EF17FA-17FF180F181A-181F1878-187F18AB-18AF18F6-18FF191D-191F192C-192F193C-193F1941-1943196E196F1975-197F19AC-19AF19CA-19CF19DB-19DD1A1C1A1D1A5F1A7D1A7E1A8A-1A8F1A9A-1A9F1AAE-1AFF1B4C-1B4F1B7D-1B7F1BAB-1BAD1BBA-1BFF1C38-1C3A1C4A-1C4C1C80-1CCF1CF3-1CFF1DE7-1DFC1F161F171F1E1F1F1F461F471F4E1F4F1F581F5A1F5C1F5E1F7E1F7F1FB51FC51FD41FD51FDC1FF01FF11FF51FFF200B-200F202A-202E2060-206F20722073208F2095-209F20B9-20CF20F1-20FF218A-218F23E9-23FF2427-243F244B-245F26CE26E226E4-26E727002705270A270B2728274C274E2753-2755275F27602795-279727B027BF27CB27CD-27CF2B4D-2B4F2B5A-2BFF2C2F2C5F2CF2-2CF82D26-2D2F2D66-2D6E2D70-2D7F2D97-2D9F2DA72DAF2DB72DBF2DC72DCF2DD72DDF2E32-2E7F2E9A2EF4-2EFF2FD6-2FEF2FFC-2FFF3040309730983100-3104312E-3130318F31B8-31BF31E4-31EF321F32FF4DB6-4DBF9FCC-9FFFA48D-A48FA4C7-A4CFA62C-A63FA660A661A674-A67BA698-A69FA6F8-A6FFA78D-A7FAA82C-A82FA83A-A83FA878-A87FA8C5-A8CDA8DA-A8DFA8FC-A8FFA954-A95EA97D-A97FA9CEA9DA-A9DDA9E0-A9FFAA37-AA3FAA4EAA4FAA5AAA5BAA7C-AA7FAAC3-AADAAAE0-ABBFABEEABEFABFA-ABFFD7A4-D7AFD7C7-D7CAD7FC-F8FFFA2EFA2FFA6EFA6FFADA-FAFFFB07-FB12FB18-FB1CFB37FB3DFB3FFB42FB45FBB2-FBD2FD40-FD4FFD90FD91FDC8-FDEFFDFEFDFFFE1A-FE1FFE27-FE2FFE53FE67FE6C-FE6FFE75FEFD-FF00FFBF-FFC1FFC8FFC9FFD0FFD1FFD8FFD9FFDD-FFDFFFE7FFEF-FFFBFFFEFFFF",
6022 < 50)<= 93)) {"0000-001F007F-009F",
6023 < 50)<= 93)) {"00AD0600-060306DD070F17B417B5200B-200F202A-202E2060-2064206A-206FFEFFFFF9-FFFB",
6024 < 50)<= 93)) {"E000-F8FF",
6025 < 50)<= 93)) {"D800-DFFF",
6026 < 50)<= 93)) {"03780379037F-0383038B038D03A20526-05300557055805600588058B-059005C8-05CF05EB-05EF05F5-05FF06040605061C061D0620065F070E074B074C07B2-07BF07FB-07FF082E082F083F-08FF093A093B094F095609570973-097809800984098D098E0991099209A909B109B3-09B509BA09BB09C509C609C909CA09CF-09D609D8-09DB09DE09E409E509FC-0A000A040A0B-0A0E0A110A120A290A310A340A370A3A0A3B0A3D0A43-0A460A490A4A0A4E-0A500A52-0A580A5D0A5F-0A650A76-0A800A840A8E0A920AA90AB10AB40ABA0ABB0AC60ACA0ACE0ACF0AD1-0ADF0AE40AE50AF00AF2-0B000B040B0D0B0E0B110B120B290B310B340B3A0B3B0B450B460B490B4A0B4E-0B550B58-0B5B0B5E0B640B650B72-0B810B840B8B-0B8D0B910B96-0B980B9B0B9D0BA0-0BA20BA5-0BA70BAB-0BAD0BBA-0BBD0BC3-0BC50BC90BCE0BCF0BD1-0BD60BD8-0BE50BFB-0C000C040C0D0C110C290C340C3A-0C3C0C450C490C4E-0C540C570C5A-0C5F0C640C650C70-0C770C800C810C840C8D0C910CA90CB40CBA0CBB0CC50CC90CCE-0CD40CD7-0CDD0CDF0CE40CE50CF00CF3-0D010D040D0D0D110D290D3A-0D3C0D450D490D4E-0D560D58-0D5F0D640D650D76-0D780D800D810D840D97-0D990DB20DBC0DBE0DBF0DC7-0DC90DCB-0DCE0DD50DD70DE0-0DF10DF5-0E000E3B-0E3E0E5C-0E800E830E850E860E890E8B0E8C0E8E-0E930E980EA00EA40EA60EA80EA90EAC0EBA0EBE0EBF0EC50EC70ECE0ECF0EDA0EDB0EDE-0EFF0F480F6D-0F700F8C-0F8F0F980FBD0FCD0FD9-0FFF10C6-10CF10FD-10FF1249124E124F12571259125E125F1289128E128F12B112B612B712BF12C112C612C712D7131113161317135B-135E137D-137F139A-139F13F5-13FF169D-169F16F1-16FF170D1715-171F1737-173F1754-175F176D17711774-177F17DE17DF17EA-17EF17FA-17FF180F181A-181F1878-187F18AB-18AF18F6-18FF191D-191F192C-192F193C-193F1941-1943196E196F1975-197F19AC-19AF19CA-19CF19DB-19DD1A1C1A1D1A5F1A7D1A7E1A8A-1A8F1A9A-1A9F1AAE-1AFF1B4C-1B4F1B7D-1B7F1BAB-1BAD1BBA-1BFF1C38-1C3A1C4A-1C4C1C80-1CCF1CF3-1CFF1DE7-1DFC1F161F171F1E1F1F1F461F471F4E1F4F1F581F5A1F5C1F5E1F7E1F7F1FB51FC51FD41FD51FDC1FF01FF11FF51FFF2065-206920722073208F2095-209F20B9-20CF20F1-20FF218A-218F23E9-23FF2427-243F244B-245F26CE26E226E4-26E727002705270A270B2728274C274E2753-2755275F27602795-279727B027BF27CB27CD-27CF2B4D-2B4F2B5A-2BFF2C2F2C5F2CF2-2CF82D26-2D2F2D66-2D6E2D70-2D7F2D97-2D9F2DA72DAF2DB72DBF2DC72DCF2DD72DDF2E32-2E7F2E9A2EF4-2EFF2FD6-2FEF2FFC-2FFF3040309730983100-3104312E-3130318F31B8-31BF31E4-31EF321F32FF4DB6-4DBF9FCC-9FFFA48D-A48FA4C7-A4CFA62C-A63FA660A661A674-A67BA698-A69FA6F8-A6FFA78D-A7FAA82C-A82FA83A-A83FA878-A87FA8C5-A8CDA8DA-A8DFA8FC-A8FFA954-A95EA97D-A97FA9CEA9DA-A9DDA9E0-A9FFAA37-AA3FAA4EAA4FAA5AAA5BAA7C-AA7FAAC3-AADAAAE0-ABBFABEEABEFABFA-ABFFD7A4-D7AFD7C7-D7CAD7FC-D7FFFA2EFA2FFA6EFA6FFADA-FAFFFB07-FB12FB18-FB1CFB37FB3DFB3FFB42FB45FBB2-FBD2FD40-FD4FFD90FD91FDC8-FDEFFDFEFDFFFE1A-FE1FFE27-FE2FFE53FE67FE6C-FE6FFE75FEFDFEFEFF00FFBF-FFC1FFC8FFC9FFD0FFD1FFD8FFD9FFDD-FFDFFFE7FFEF-FFF8FFFEFFFF"
6027 < 50)<= 93)) {
6028  
6029 < 50)<= 93)) {function addUnicodePackage (pack) {
6030 < 50)<= 93)) {var codePoint = /\w{4}/g;
6031 < 50)<= 93)) {for (var name in pack)
6032 < 50)<= 93)) {"\\u$&");
6033 < 50)<= 93)) {
6034  
6035 < 50)<= 93)) {
6036  
6037 < 50)<= 93)) {"ace/mode/text",["require","exports","module","ace/tokenizer","ace/mode/text_highlight_rules","ace/mode/behaviour/cstyle","ace/unicode","ace/lib/lang","ace/token_iterator","ace/range"], function(require, exports, module) {
6038 < 50)<= 93)) {"use strict";
6039  
6040 < 50)<= 93)) {var Tokenizer = require("../tokenizer").Tokenizer;
6041 < 50)<= 93)) {var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
6042 < 50)<= 93)) {var CstyleBehaviour = require("./behaviour/cstyle").CstyleBehaviour;
6043 < 50)<= 93)) {var unicode = require("../unicode");
6044 < 50)<= 93)) {var lang = require("../lib/lang");
6045 < 50)<= 93)) {var TokenIterator = require("../token_iterator").TokenIterator;
6046 < 50)<= 93)) {var Range = require("../range").Range;
6047  
6048 < 50)<= 93)) {var Mode = function() {
6049 < 50)<= 93)) {this.HighlightRules = TextHighlightRules;
6050 < 50)<= 93)) {
6051  
6052 < 50)<= 93)) {function() {
6053 < 50)<= 93)) {this.$defaultBehaviour = new CstyleBehaviour();
6054  
6055 < 50)<= 93)) {this.tokenRe = new RegExp("^["
6056 < 50)<= 93)) {
6057 < 50)<= 93)) {
6058 < 50)<= 93)) {
6059 < 50)<= 93)) {"\\$_]+", "g"
6060 < 50)<= 93)) {
6061  
6062 < 50)<= 93)) {this.nonTokenRe = new RegExp("^(?:[^"
6063 < 50)<= 93)) {
6064 < 50)<= 93)) {
6065 < 50)<= 93)) {
6066 < 50)<= 93)) {"\\$_]|\\s])+", "g"
6067 < 50)<= 93)) {
6068  
6069 < 50)<= 93)) {this.getTokenizer = function() {
6070 < 50)<= 93)) {if (!this.$tokenizer) {
6071 < 50)<= 93)) {this.$highlightRules = this.$highlightRules || new this.HighlightRules(this.$highlightRuleConfig);
6072 < 50)<= 93)) {this.$tokenizer = new Tokenizer(this.$highlightRules.getRules());
6073 < 50)<= 93)) {
6074 < 50)<= 93)) {return this.$tokenizer;
6075 < 50)<= 93)) {
6076  
6077 < 50)<= 93)) {this.lineCommentStart = "";
6078 < 50)<= 93)) {this.blockComment = "";
6079  
6080 < 50)<= 93)) {this.toggleCommentLines = function(state, session, startRow, endRow) {
6081 < 50)<= 93)) {var doc = session.doc;
6082  
6083 < 50)<= 93)) {var ignoreBlankLines = true;
6084 < 50)<= 93)) {var shouldRemove = true;
6085 < 50)<= 93)) {var minIndent = Infinity;
6086 < 50)<= 93)) {var tabSize = session.getTabSize();
6087 < 50)<= 93)) {var insertAtTabStop = false;
6088  
6089 < 50)<= 93)) {if (!this.lineCommentStart) {
6090 < 50)<= 93)) {if (!this.blockComment)
6091 < 50)<= 93)) {return false;
6092 < 50)<= 93)) {var lineCommentStart = this.blockComment.start;
6093 < 50)<= 93)) {var lineCommentEnd = this.blockComment.end;
6094 < 50)<= 93)) {var regexpStart = new RegExp("^(\\s*)(?:" + lang.escapeRegExp(lineCommentStart) + ")");
6095 < 50)<= 93)) {var regexpEnd = new RegExp("(?:" + lang.escapeRegExp(lineCommentEnd) + ")\\s*$");
6096  
6097 < 50)<= 93)) {var comment = function(line, i) {
6098 < 50)<= 93)) {if (testRemove(line, i))
6099 < 50)<= 93)) {return;
6100 < 50)<= 93)) {if (!ignoreBlankLines || /\S/.test(line)) {
6101 < 50)<= 93)) {
6102 < 50)<= 93)) {
6103 < 50)<= 93)) {
6104 < 50)<= 93)) {
6105  
6106 < 50)<= 93)) {var uncomment = function(line, i) {
6107 < 50)<= 93)) {var m;
6108 < 50)<= 93)) {if (m = line.match(regexpEnd))
6109 < 50)<= 93)) {
6110 < 50)<= 93)) {if (m = line.match(regexpStart))
6111 < 50)<= 93)) {
6112 < 50)<= 93)) {
6113  
6114 < 50)<= 93)) {var testRemove = function(line, row) {
6115 < 50)<= 93)) {if (regexpStart.test(line))
6116 < 50)<= 93)) {return true;
6117 < 50)<= 93)) {var tokens = session.getTokens(row);
6118 < 50)<= 93)) {for (var i = 0; i < tokens.length; i++) {
6119 < 50)<= 93)) {if (tokens[i].type === "comment")
6120 < 50)<= 93)) {return true;
6121 < 50)<= 93)) {
6122 < 50)<= 93)) {
6123 < 50)<= 93)) {else {
6124 < 50)<= 93)) {if (Array.isArray(this.lineCommentStart)) {
6125 < 50)<= 93)) {var regexpStart = this.lineCommentStart.map(lang.escapeRegExp).join("|");
6126 < 50)<= 93)) {var lineCommentStart = this.lineCommentStart[0];
6127 < 50)<= 93)) {else {
6128 < 50)<= 93)) {var regexpStart = lang.escapeRegExp(this.lineCommentStart);
6129 < 50)<= 93)) {var lineCommentStart = this.lineCommentStart;
6130 < 50)<= 93)) {
6131 < 50)<= 93)) {new RegExp("^(\\s*)(?:" + regexpStart + ") ?");
6132  
6133 < 50)<= 93)) {
6134  
6135 < 50)<= 93)) {var uncomment = function(line, i) {
6136 < 50)<= 93)) {var m = line.match(regexpStart);
6137 < 50)<= 93)) {if (!m) return;
6138 < 50)<= 93)) {var start = m[1].length, end = m[0].length;
6139 < 50)<= 93)) {if (!shouldInsertSpace(line, start, end) && m[0][end - 1] == " ")
6140 < 50)<= 93)) {
6141 < 50)<= 93)) {
6142 < 50)<= 93)) {
6143 < 50)<= 93)) {var commentWithSpace = lineCommentStart + " ";
6144 < 50)<= 93)) {var comment = function(line, i) {
6145 < 50)<= 93)) {if (!ignoreBlankLines || /\S/.test(line)) {
6146 < 50)<= 93)) {if (shouldInsertSpace(line, minIndent, minIndent))
6147 < 50)<= 93)) {
6148 < 50)<= 93)) {else
6149 < 50)<= 93)) {
6150 < 50)<= 93)) {
6151 < 50)<= 93)) {
6152 < 50)<= 93)) {var testRemove = function(line, i) {
6153 < 50)<= 93)) {return regexpStart.test(line);
6154 < 50)<= 93)) {
6155  
6156 < 50)<= 93)) {var shouldInsertSpace = function(line, before, after) {
6157 < 50)<= 93)) {var spaces = 0;
6158 < 50)<= 93)) {while (before-- && line.charAt(before) == " ")
6159 < 50)<= 93)) {
6160 < 50)<= 93)) {if (spaces % tabSize != 0)
6161 < 50)<= 93)) {return false;
6162 < 50)<= 93)) {var spaces = 0;
6163 < 50)<= 93)) {while (line.charAt(after++) == " ")
6164 < 50)<= 93)) {
6165 < 50)<= 93)) {if (tabSize > 2)
6166 < 50)<= 93)) {return spaces % tabSize != tabSize - 1;
6167 < 50)<= 93)) {else
6168 < 50)<= 93)) {return spaces % tabSize == 0;
6169 < 50)<= 93)) {return true;
6170 < 50)<= 93)) {
6171 < 50)<= 93)) {
6172  
6173 < 50)<= 93)) {function iter(fun) {
6174 < 50)<= 93)) {for (var i = startRow; i <= endRow; i++)
6175 < 50)<= 93)) {
6176 < 50)<= 93)) {
6177  
6178  
6179 < 50)<= 93)) {var minEmptyLength = Infinity;
6180 < 50)<= 93)) {function(line, i) {
6181 < 50)<= 93)) {var indent = line.search(/\S/);
6182 < 50)<= 93)) {if (indent !== -1) {
6183 < 50)<= 93)) {if (indent < minIndent)
6184 < 50)<= 93)) {
6185 < 50)<= 93)) {if (shouldRemove && !testRemove(line, i))
6186 < 50)<= 93)) {false;
6187 < 50)<= 93)) {else if (minEmptyLength > line.length) {
6188 < 50)<= 93)) {
6189 < 50)<= 93)) {
6190 < 50)<= 93)) {
6191  
6192 < 50)<= 93)) {if (minIndent == Infinity) {
6193 < 50)<= 93)) {
6194 < 50)<= 93)) {false;
6195 < 50)<= 93)) {false;
6196 < 50)<= 93)) {
6197  
6198 < 50)<= 93)) {if (insertAtTabStop && minIndent % tabSize != 0)
6199 < 50)<= 93)) {Math.floor(minIndent / tabSize) * tabSize;
6200  
6201 < 50)<= 93)) { iter(shouldRemove ? uncomment : comment);
6202 < 50)<= 93)) { };
6203  
6204 < 50)<= 93)) { this.toggleBlockComment = function(state, session, range, cursor) {
6205 < 50)<= 93)) { var comment = this.blockComment;
6206 < 50)<= 93)) { if (!comment)
6207 < 50)<= 93)) { return;
6208 < 50)<= 93)) { if (!comment.start && comment[0])
6209 < 50)<= 93)) { comment = comment[0];
6210  
6211 < 50)<= 93)) { var iterator = new TokenIterator(session, cursor.row, cursor.column);
6212 < 50)<= 93)) { var token = iterator.getCurrentToken();
6213  
6214 < 50)<= 93)) { var sel = session.selection;
6215 < 50)<= 93)) { var initialRange = session.selection.toOrientedRange();
6216 < 50)<= 93)) { var startRow, colDiff;
6217  
6218 < 50)<= 93)) { if (token && /comment/.test(token.type)) {
6219 < 50)<= 93)) { var startRange, endRange;
6220 < 50)<= 93)) { while (token && /comment/.test(token.type)) {
6221 < 50)<= 93)) { var i = token.value.indexOf(comment.start);
6222 < 50)<= 93)) { if (i != -1) {
6223 < 50)<= 93)) { var row = iterator.getCurrentTokenRow();
6224 < 50)<= 93)) { var column = iterator.getCurrentTokenColumn() + i;
6225 < 50)<= 93)) { startRange = new Range(row, column, row, column + comment.start.length);
6226 < 50)<= 93)) { break;
6227 < 50)<= 93)) { }
6228 < 50)<= 93)) { token = iterator.stepBackward();
6229 < 50)<= 93)) { }
6230  
6231 < 50)<= 93)) { var iterator = new TokenIterator(session, cursor.row, cursor.column);
6232 < 50)<= 93)) { var token = iterator.getCurrentToken();
6233 < 50)<= 93)) { while (token && /comment/.test(token.type)) {
6234 < 50)<= 93)) { var i = token.value.indexOf(comment.end);
6235 < 50)<= 93)) { if (i != -1) {
6236 < 50)<= 93)) { var row = iterator.getCurrentTokenRow();
6237 < 50)<= 93)) { var column = iterator.getCurrentTokenColumn() + i;
6238 < 50)<= 93)) { endRange = new Range(row, column, row, column + comment.end.length);
6239 < 50)<= 93)) { break;
6240 < 50)<= 93)) { }
6241 < 50)<= 93)) { token = iterator.stepForward();
6242 < 50)<= 93)) { }
6243 < 50)<= 93)) { if (endRange)
6244 < 50)<= 93)) { session.remove(endRange);
6245 < 50)<= 93)) { if (startRange) {
6246 < 50)<= 93)) { session.remove(startRange);
6247 < 50)<= 93)) { startRow = startRange.start.row;
6248 < 50)<= 93)) { colDiff = -comment.start.length;
6249 < 50)<= 93)) { }
6250 < 50)<= 93)) { } else {
6251 < 50)<= 93)) { colDiff = comment.start.length;
6252 < 50)<= 93)) { startRow = range.start.row;
6253 < 50)<= 93)) { session.insert(range.end, comment.end);
6254 < 50)<= 93)) { session.insert(range.start, comment.start);
6255 < 50)<= 93)) { }
6256 < 50)<= 93)) { if (initialRange.start.row == startRow)
6257 < 50)<= 93)) { initialRange.start.column += colDiff;
6258 < 50)<= 93)) { if (initialRange.end.row == startRow)
6259 < 50)<= 93)) { initialRange.end.column += colDiff;
6260 < 50)<= 93)) { session.selection.fromOrientedRange(initialRange);
6261 < 50)<= 93)) { };
6262  
6263 < 50)<= 93)) { this.getNextLineIndent = function(state, line, tab) {
6264 < 50)<= 93)) { return this.$getIndent(line);
6265 < 50)<= 93)) { };
6266  
6267 < 50)<= 93)) { this.checkOutdent = function(state, line, input) {
6268 < 50)<= 93)) { return false;
6269 < 50)<= 93)) { };
6270  
6271 < 50)<= 93)) { this.autoOutdent = function(state, doc, row) {
6272 < 50)<= 93)) { };
6273  
6274 < 50)<= 93)) { this.$getIndent = function(line) {
6275 < 50)<= 93)) { return line.match(/^\s*/)[0];
6276 < 50)<= 93)) { };
6277  
6278 < 50)<= 93)) { this.createWorker = function(session) {
6279 < 50)<= 93)) { return null;
6280 < 50)<= 93)) { };
6281  
6282 < 50)<= 93)) { this.createModeDelegates = function (mapping) {
6283 < 50)<= 93)) { this.$embeds = [];
6284 < 50)<= 93)) { this.$modes = {};
6285 < 50)<= 93)) { for (var i in mapping) {
6286 < 50)<= 93)) { if (mapping[i]) {
6287 < 50)<= 93)) { this.$embeds.push(i);
6288 < 50)<= 93)) { this.$modes[i] = new mapping[i]();
6289 < 50)<= 93)) { }
6290 < 50)<= 93)) { }
6291  
6292 < 50)<= 93)) { var delegations = ["toggleBlockComment", "toggleCommentLines", "getNextLineIndent",
6293 < 50)<= 93)) { "checkOutdent", "autoOutdent", "transformAction", "getCompletions"];
6294  
6295 < 50)<= 93)) { for (var i = 0; i < delegations.length; i++) {
6296 < 50)<= 93)) {< delegations.length; i++) { (function(scope) {
6297 < 50)<= 93)) {< delegations.length; i++) { var functionName = delegations[i];
6298 < 50)<= 93)) {< delegations.length; i++) { var defaultHandler = scope[functionName];
6299 < 50)<= 93)) {< delegations.length; i++) { scope[delegations[i]] = function() {
6300 < 50)<= 93)) {< delegations.length; i++) { return this.$delegator(functionName, arguments, defaultHandler);
6301 < 50)<= 93)) {< delegations.length; i++) { };
6302 < 50)<= 93)) {< delegations.length; i++) { }(this));
6303 < 50)<= 93)) {< delegations.length; i++) { }
6304 < 50)<= 93)) {< delegations.length; i++) { };
6305  
6306 < 50)<= 93)) {< delegations.length; i++) { this.$delegator = function(method, args, defaultHandler) {
6307 < 50)<= 93)) {< delegations.length; i++) { var state = args[0];
6308 < 50)<= 93)) {< delegations.length; i++) { if (typeof state != "string")
6309 < 50)<= 93)) {< delegations.length; i++) { state = state[0];
6310 < 50)<= 93)) {< delegations.length; i++) { for (var i = 0; i < this.$embeds.length; i++) {
6311 < 50)<= 93)) {< delegations.length; i++) {< this.$embeds.length; i++) { if (!this.$modes[this.$embeds[i]]) continue;
6312  
6313 < 50)<= 93)) {< delegations.length; i++) {< this.$embeds.length; i++) { var split = state.split(this.$embeds[i]);
6314 < 50)<= 93)) {< delegations.length; i++) {< this.$embeds.length; i++) { if (!split[0] && split[1]) {
6315 < 50)<= 93)) {< delegations.length; i++) {< this.$embeds.length; i++) { args[0] = split[1];
6316 < 50)<= 93)) {< delegations.length; i++) {< this.$embeds.length; i++) { var mode = this.$modes[this.$embeds[i]];
6317 < 50)<= 93)) {< delegations.length; i++) {< this.$embeds.length; i++) { return mode[method].apply(mode, args);
6318 < 50)<= 93)) {< delegations.length; i++) {< this.$embeds.length; i++) { }
6319 < 50)<= 93)) {< delegations.length; i++) {< this.$embeds.length; i++) { }
6320 < 50)<= 93)) {< delegations.length; i++) {< this.$embeds.length; i++) { var ret = defaultHandler.apply(this, args);
6321 < 50)<= 93)) {< delegations.length; i++) {< this.$embeds.length; i++) { return defaultHandler ? ret : undefined;
6322 < 50)<= 93)) {< delegations.length; i++) {< this.$embeds.length; i++) { };
6323  
6324 < 50)<= 93)) {< delegations.length; i++) {< this.$embeds.length; i++) { this.transformAction = function(state, action, editor, session, param) {
6325 < 50)<= 93)) {< delegations.length; i++) {< this.$embeds.length; i++) { if (this.$behaviour) {
6326 < 50)<= 93)) {< delegations.length; i++) {< this.$embeds.length; i++) { var behaviours = this.$behaviour.getBehaviours();
6327 < 50)<= 93)) {< delegations.length; i++) {< this.$embeds.length; i++) { for (var key in behaviours) {
6328 < 50)<= 93)) {< delegations.length; i++) {< this.$embeds.length; i++) { if (behaviours[key][action]) {
6329 < 50)<= 93)) {< delegations.length; i++) {< this.$embeds.length; i++) { var ret = behaviours[key][action].apply(this, arguments);
6330 < 50)<= 93)) {< delegations.length; i++) {< this.$embeds.length; i++) { if (ret) {
6331 < 50)<= 93)) {< delegations.length; i++) {< this.$embeds.length; i++) { return ret;
6332 < 50)<= 93)) {< delegations.length; i++) {< this.$embeds.length; i++) { }
6333 < 50)<= 93)) {< delegations.length; i++) {< this.$embeds.length; i++) { }
6334 < 50)<= 93)) {< delegations.length; i++) {< this.$embeds.length; i++) { }
6335 < 50)<= 93)) {< delegations.length; i++) {< this.$embeds.length; i++) { }
6336 < 50)<= 93)) {< delegations.length; i++) {< this.$embeds.length; i++) { };
6337  
6338 < 50)<= 93)) {< delegations.length; i++) {< this.$embeds.length; i++) { this.getKeywords = function(append) {
6339 < 50)<= 93)) {< delegations.length; i++) {< this.$embeds.length; i++) { if (!this.completionKeywords) {
6340 < 50)<= 93)) {< delegations.length; i++) {< this.$embeds.length; i++) { var rules = this.$tokenizer.rules;
6341 < 50)<= 93)) {< delegations.length; i++) {< this.$embeds.length; i++) { var completionKeywords = [];
6342 < 50)<= 93)) {< delegations.length; i++) {< this.$embeds.length; i++) { for (var rule in rules) {
6343 < 50)<= 93)) {< delegations.length; i++) {< this.$embeds.length; i++) { var ruleItr = rules[rule];
6344 < 50)<= 93)) {< delegations.length; i++) {< this.$embeds.length; i++) { for (var r = 0, l = ruleItr.length; r < l; r++) {
6345 < 50)<= 93)) {< delegations.length; i++) {< this.$embeds.length; i++) {< l; r++) { if (typeof ruleItr[r].token === "string") {
6346 < 50)<= 93)) {< delegations.length; i++) {< this.$embeds.length; i++) {< l; r++) { if (/keyword|support|storage/.test(ruleItr[r].token))
6347 < 50)<= 93)) { completionKeywords.push(ruleItr[r].regex);
6348 < 50)<= 93)) { }
6349 < 50)<= 93)) { else if (typeof ruleItr[r].token === "object") {
6350 < 50)<= 93)) { for (var a = 0, aLength = ruleItr[r].token.length; a < aLength; a++) {
6351 < 50)<= 93)) {< aLength; a++) { if (/keyword|support|storage/.test(ruleItr[r].token[a])) {
6352 < 50)<= 93)) { var rule = ruleItr[r].regex.match(/\(.+?\)/g)[a];
6353 < 50)<= 93)) { completionKeywords.push(rule.substr(1, rule.length - 2));
6354 < 50)<= 93)) { }
6355 < 50)<= 93)) { }
6356 < 50)<= 93)) { }
6357 < 50)<= 93)) { }
6358 < 50)<= 93)) { }
6359 < 50)<= 93)) { this.completionKeywords = completionKeywords;
6360 < 50)<= 93)) { }
6361 < 50)<= 93)) { if (!append)
6362 < 50)<= 93)) { return this.$keywordList;
6363 < 50)<= 93)) { return completionKeywords.concat(this.$keywordList || []);
6364 < 50)<= 93)) { };
6365  
6366 < 50)<= 93)) { this.$createKeywordList = function() {
6367 < 50)<= 93)) { if (!this.$highlightRules)
6368 < 50)<= 93)) { this.getTokenizer();
6369 < 50)<= 93)) { return this.$keywordList = this.$highlightRules.$keywordList || [];
6370 < 50)<= 93)) { };
6371  
6372 < 50)<= 93)) { this.getCompletions = function(state, session, pos, prefix) {
6373 < 50)<= 93)) { var keywords = this.$keywordList || this.$createKeywordList();
6374 < 50)<= 93)) { return keywords.map(function(word) {
6375 < 50)<= 93)) { return {
6376 < 50)<= 93)) { name: word,
6377 < 50)<= 93)) { value: word,
6378 < 50)<= 93)) { score: 0,
6379 < 50)<= 93)) { meta: "keyword"
6380 < 50)<= 93)) { };
6381 < 50)<= 93)) { });
6382 < 50)<= 93)) { };
6383  
6384 < 50)<= 93)) { this.$id = "ace/mode/text";
6385 < 50)<= 93)) {}).call(Mode.prototype);
6386  
6387 < 50)<= 93)) {exports.Mode = Mode;
6388 < 50)<= 93)) {});
6389  
6390 < 50)<= 93)) {ace.define("ace/apply_delta",["require","exports","module"], function(require, exports, module) {
6391 < 50)<= 93)) {"use strict";
6392  
6393 < 50)<= 93)) {function throwDeltaError(delta, errorText){
6394 < 50)<= 93)) { console.log("Invalid Delta:", delta);
6395 < 50)<= 93)) { throw "Invalid Delta: " + errorText;
6396 < 50)<= 93)) {}
6397  
6398 < 50)<= 93)) {function positionInDocument(docLines, position) {
6399 < 50)<= 93)) { return position.row >= 0 && position.row < docLines.length &&
6400 < 50)<= 93)) { position.column >= 0 && position.column <= docLines[position.row].length;
6401 < 50)<= 93)) {}
6402  
6403 < 50)<= 93)) {function validateDelta(docLines, delta) {
6404 < 50)<= 93)) { if (delta.action != "insert" && delta.action != "remove")
6405 < 50)<= 93)) { throwDeltaError(delta, "delta.action must be 'insert' or 'remove'");
6406 < 50)<= 93)) { if (!(delta.lines instanceof Array))
6407 < 50)<= 93)) { throwDeltaError(delta, "delta.lines must be an Array");
6408 < 50)<= 93)) { if (!delta.start || !delta.end)
6409 < 50)<= 93)) { throwDeltaError(delta, "delta.start/end must be an present");
6410 < 50)<= 93)) { var start = delta.start;
6411 < 50)<= 93)) { if (!positionInDocument(docLines, delta.start))
6412 < 50)<= 93)) { throwDeltaError(delta, "delta.start must be contained in document");
6413 < 50)<= 93)) { var end = delta.end;
6414 < 50)<= 93)) { if (delta.action == "remove" && !positionInDocument(docLines, end))
6415 < 50)<= 93)) { throwDeltaError(delta, "delta.end must contained in document for 'remove' actions");
6416 < 50)<= 93)) { var numRangeRows = end.row - start.row;
6417 < 50)<= 93)) { var numRangeLastLineChars = (end.column - (numRangeRows == 0 ? start.column : 0));
6418 < 50)<= 93)) { if (numRangeRows != delta.lines.length - 1 || delta.lines[numRangeRows].length != numRangeLastLineChars)
6419 < 50)<= 93)) { throwDeltaError(delta, "delta.range must match delta lines");
6420 < 50)<= 93)) {}
6421  
6422 < 50)<= 93)) {exports.applyDelta = function(docLines, delta, doNotValidate) {
6423  
6424 < 50)<= 93)) { var row = delta.start.row;
6425 < 50)<= 93)) { var startColumn = delta.start.column;
6426 < 50)<= 93)) { var line = docLines[row] || "";
6427 < 50)<= 93)) { switch (delta.action) {
6428 < 50)<= 93)) { case "insert":
6429 < 50)<= 93)) { var lines = delta.lines;
6430 < 50)<= 93)) { if (lines.length === 1) {
6431 < 50)<= 93)) { docLines[row] = line.substring(0, startColumn) + delta.lines[0] + line.substring(startColumn);
6432 < 50)<= 93)) { } else {
6433 < 50)<= 93)) { var args = [row, 1].concat(delta.lines);
6434 < 50)<= 93)) { docLines.splice.apply(docLines, args);
6435 < 50)<= 93)) { docLines[row] = line.substring(0, startColumn) + docLines[row];
6436 < 50)<= 93)) { docLines[row + delta.lines.length - 1] += line.substring(startColumn);
6437 < 50)<= 93)) { }
6438 < 50)<= 93)) { break;
6439 < 50)<= 93)) { case "remove":
6440 < 50)<= 93)) { var endColumn = delta.end.column;
6441 < 50)<= 93)) { var endRow = delta.end.row;
6442 < 50)<= 93)) { if (row === endRow) {
6443 < 50)<= 93)) { docLines[row] = line.substring(0, startColumn) + line.substring(endColumn);
6444 < 50)<= 93)) { } else {
6445 < 50)<= 93)) { docLines.splice(
6446 < 50)<= 93)) { row, endRow - row + 1,
6447 < 50)<= 93)) { line.substring(0, startColumn) + docLines[endRow].substring(endColumn)
6448 < 50)<= 93)) { );
6449 < 50)<= 93)) { }
6450 < 50)<= 93)) { break;
6451 < 50)<= 93)) { }
6452 < 50)<= 93)) {}
6453 < 50)<= 93)) {});
6454  
6455 < 50)<= 93)) {ace.define("ace/anchor",["require","exports","module","ace/lib/oop","ace/lib/event_emitter"], function(require, exports, module) {
6456 < 50)<= 93)) {"use strict";
6457  
6458 < 50)<= 93)) {var oop = require("./lib/oop");
6459 < 50)<= 93)) {var EventEmitter = require("./lib/event_emitter").EventEmitter;
6460  
6461 < 50)<= 93)) {var Anchor = exports.Anchor = function(doc, row, column) {
6462 < 50)<= 93)) { this.$onChange = this.onChange.bind(this);
6463 < 50)<= 93)) { this.attach(doc);
6464  
6465 < 50)<= 93)) { if (typeof column == "undefined")
6466 < 50)<= 93)) { this.setPosition(row.row, row.column);
6467 < 50)<= 93)) { else
6468 < 50)<= 93)) { this.setPosition(row, column);
6469 < 50)<= 93)) {};
6470  
6471 < 50)<= 93)) {(function() {
6472  
6473 < 50)<= 93)) { oop.implement(this, EventEmitter);
6474 < 50)<= 93)) { this.getPosition = function() {
6475 < 50)<= 93)) { return this.$clipPositionToDocument(this.row, this.column);
6476 < 50)<= 93)) { };
6477 < 50)<= 93)) { this.getDocument = function() {
6478 < 50)<= 93)) { return this.document;
6479 < 50)<= 93)) { };
6480 < 50)<= 93)) { this.$insertRight = false;
6481 < 50)<= 93)) { this.onChange = function(delta) {
6482 < 50)<= 93)) { if (delta.start.row == delta.end.row && delta.start.row != this.row)
6483 < 50)<= 93)) { return;
6484  
6485 < 50)<= 93)) { if (delta.start.row > this.row)
6486 < 50)<= 93)) { return;
6487  
6488 < 50)<= 93)) { var point = $getTransformedPoint(delta, {row: this.row, column: this.column}, this.$insertRight);
6489 < 50)<= 93)) { this.setPosition(point.row, point.column, true);
6490 < 50)<= 93)) { };
6491  
6492 < 50)<= 93)) { function $pointsInOrder(point1, point2, equalPointsInOrder) {
6493 < 50)<= 93)) { var bColIsAfter = equalPointsInOrder ? point1.column <= point2.column : point1.column < point2.column;
6494 < 50)<= 93)) { return (point1.row < point2.row) || (point1.row == point2.row && bColIsAfter);
6495 < 50)<= 93)) { }
6496  
6497 < 50)<= 93)) { function $getTransformedPoint(delta, point, moveIfEqual) {
6498 < 50)<= 93)) { var deltaIsInsert = delta.action == "insert";
6499 < 50)<= 93)) { var deltaRowShift = (deltaIsInsert ? 1 : -1) * (delta.end.row - delta.start.row);
6500 < 50)<= 93)) { var deltaColShift = (deltaIsInsert ? 1 : -1) * (delta.end.column - delta.start.column);
6501 < 50)<= 93)) { var deltaStart = delta.start;
6502 < 50)<= 93)) { var deltaEnd = deltaIsInsert ? deltaStart : delta.end; // Collapse insert range.
6503 < 50)<= 93)) { if ($pointsInOrder(point, deltaStart, moveIfEqual)) {
6504 < 50)<= 93)) { return {
6505 < 50)<= 93)) { row: point.row,
6506 < 50)<= 93)) { column: point.column
6507 < 50)<= 93)) { };
6508 < 50)<= 93)) { }
6509 < 50)<= 93)) { if ($pointsInOrder(deltaEnd, point, !moveIfEqual)) {
6510 < 50)<= 93)) { return {
6511 < 50)<= 93)) { row: point.row + deltaRowShift,
6512 < 50)<= 93)) { column: point.column + (point.row == deltaEnd.row ? deltaColShift : 0)
6513 < 50)<= 93)) { };
6514 < 50)<= 93)) { }
6515  
6516 < 50)<= 93)) { return {
6517 < 50)<= 93)) { row: deltaStart.row,
6518 < 50)<= 93)) { column: deltaStart.column
6519 < 50)<= 93)) { };
6520 < 50)<= 93)) { }
6521 < 50)<= 93)) { this.setPosition = function(row, column, noClip) {
6522 < 50)<= 93)) { var pos;
6523 < 50)<= 93)) { if (noClip) {
6524 < 50)<= 93)) { pos = {
6525 < 50)<= 93)) { row: row,
6526 < 50)<= 93)) { column: column
6527 < 50)<= 93)) { };
6528 < 50)<= 93)) { } else {
6529 < 50)<= 93)) { pos = this.$clipPositionToDocument(row, column);
6530 < 50)<= 93)) { }
6531  
6532 < 50)<= 93)) { if (this.row == pos.row && this.column == pos.column)
6533 < 50)<= 93)) { return;
6534  
6535 < 50)<= 93)) { var old = {
6536 < 50)<= 93)) { row: this.row,
6537 < 50)<= 93)) { column: this.column
6538 < 50)<= 93)) { };
6539  
6540 < 50)<= 93)) { this.row = pos.row;
6541 < 50)<= 93)) { this.column = pos.column;
6542 < 50)<= 93)) { this._signal("change", {
6543 < 50)<= 93)) { old: old,
6544 < 50)<= 93)) { value: pos
6545 < 50)<= 93)) { });
6546 < 50)<= 93)) { };
6547 < 50)<= 93)) { this.detach = function() {
6548 < 50)<= 93)) { this.document.removeEventListener("change", this.$onChange);
6549 < 50)<= 93)) { };
6550 < 50)<= 93)) { this.attach = function(doc) {
6551 < 50)<= 93)) { this.document = doc || this.document;
6552 < 50)<= 93)) { this.document.on("change", this.$onChange);
6553 < 50)<= 93)) { };
6554 < 50)<= 93)) { this.$clipPositionToDocument = function(row, column) {
6555 < 50)<= 93)) { var pos = {};
6556  
6557 < 50)<= 93)) { if (row >= this.document.getLength()) {
6558 < 50)<= 93)) { pos.row = Math.max(0, this.document.getLength() - 1);
6559 < 50)<= 93)) { pos.column = this.document.getLine(pos.row).length;
6560 < 50)<= 93)) { }
6561 < 50)<= 93)) { else if (row < 0) {
6562 < 50)<= 93)) { pos.row = 0;
6563 < 50)<= 93)) { pos.column = 0;
6564 < 50)<= 93)) { }
6565 < 50)<= 93)) { else {
6566 < 50)<= 93)) { pos.row = row;
6567 < 50)<= 93)) { pos.column = Math.min(this.document.getLine(pos.row).length, Math.max(0, column));
6568 < 50)<= 93)) { }
6569  
6570 < 50)<= 93)) { if (column < 0)
6571 < 50)<= 93)) { pos.column = 0;
6572  
6573 < 50)<= 93)) { return pos;
6574 < 50)<= 93)) { };
6575  
6576 < 50)<= 93)) {}).call(Anchor.prototype);
6577  
6578 < 50)<= 93)) {});
6579  
6580 < 50)<= 93)) {ace.define("ace/document",["require","exports","module","ace/lib/oop","ace/apply_delta","ace/lib/event_emitter","ace/range","ace/anchor"], function(require, exports, module) {
6581 < 50)<= 93)) {"use strict";
6582  
6583 < 50)<= 93)) {var oop = require("./lib/oop");
6584 < 50)<= 93)) {var applyDelta = require("./apply_delta").applyDelta;
6585 < 50)<= 93)) {var EventEmitter = require("./lib/event_emitter").EventEmitter;
6586 < 50)<= 93)) {var Range = require("./range").Range;
6587 < 50)<= 93)) {var Anchor = require("./anchor").Anchor;
6588  
6589 < 50)<= 93)) {var Document = function(textOrLines) {
6590 < 50)<= 93)) { this.$lines = [""];
6591 < 50)<= 93)) { if (textOrLines.length === 0) {
6592 < 50)<= 93)) { this.$lines = [""];
6593 < 50)<= 93)) { } else if (Array.isArray(textOrLines)) {
6594 < 50)<= 93)) { this.insertMergedLines({row: 0, column: 0}, textOrLines);
6595 < 50)<= 93)) { } else {
6596 < 50)<= 93)) { this.insert({row: 0, column:0}, textOrLines);
6597 < 50)<= 93)) { }
6598 < 50)<= 93)) {};
6599  
6600 < 50)<= 93)) {(function() {
6601  
6602 < 50)<= 93)) { oop.implement(this, EventEmitter);
6603 < 50)<= 93)) { this.setValue = function(text) {
6604 < 50)<= 93)) { var len = this.getLength() - 1;
6605 < 50)<= 93)) { this.remove(new Range(0, 0, len, this.getLine(len).length));
6606 < 50)<= 93)) { this.insert({row: 0, column: 0}, text);
6607 < 50)<= 93)) { };
6608 < 50)<= 93)) { this.getValue = function() {
6609 < 50)<= 93)) { return this.getAllLines().join(this.getNewLineCharacter());
6610 < 50)<= 93)) { };
6611 < 50)<= 93)) { this.createAnchor = function(row, column) {
6612 < 50)<= 93)) { return new Anchor(this, row, column);
6613 < 50)<= 93)) { };
6614 < 50)<= 93)) { if ("aaa".split(/a/).length === 0) {
6615 < 50)<= 93)) { this.$split = function(text) {
6616 < 50)<= 93)) { return text.replace(/\r\n|\r/g, "\n").split("\n");
6617 < 50)<= 93)) { };
6618 < 50)<= 93)) { } else {
6619 < 50)<= 93)) { this.$split = function(text) {
6620 < 50)<= 93)) { return text.split(/\r\n|\r|\n/);
6621 < 50)<= 93)) { };
6622 < 50)<= 93)) { }
6623  
6624  
6625 < 50)<= 93)) { this.$detectNewLine = function(text) {
6626 < 50)<= 93)) { var match = text.match(/^.*?(\r\n|\r|\n)/m);
6627 < 50)<= 93)) { this.$autoNewLine = match ? match[1] : "\n";
6628 < 50)<= 93)) { this._signal("changeNewLineMode");
6629 < 50)<= 93)) { };
6630 < 50)<= 93)) { this.getNewLineCharacter = function() {
6631 < 50)<= 93)) { switch (this.$newLineMode) {
6632 < 50)<= 93)) { case "windows":
6633 < 50)<= 93)) { return "\r\n";
6634 < 50)<= 93)) { case "unix":
6635 < 50)<= 93)) { return "\n";
6636 < 50)<= 93)) { default:
6637 < 50)<= 93)) { return this.$autoNewLine || "\n";
6638 < 50)<= 93)) { }
6639 < 50)<= 93)) { };
6640  
6641 < 50)<= 93)) { this.$autoNewLine = "";
6642 < 50)<= 93)) { this.$newLineMode = "auto";
6643 < 50)<= 93)) { this.setNewLineMode = function(newLineMode) {
6644 < 50)<= 93)) { if (this.$newLineMode === newLineMode)
6645 < 50)<= 93)) { return;
6646  
6647 < 50)<= 93)) { this.$newLineMode = newLineMode;
6648 < 50)<= 93)) { this._signal("changeNewLineMode");
6649 < 50)<= 93)) { };
6650 < 50)<= 93)) { this.getNewLineMode = function() {
6651 < 50)<= 93)) { return this.$newLineMode;
6652 < 50)<= 93)) { };
6653 < 50)<= 93)) { this.isNewLine = function(text) {
6654 < 50)<= 93)) { return (text == "\r\n" || text == "\r" || text == "\n");
6655 < 50)<= 93)) { };
6656 < 50)<= 93)) { this.getLine = function(row) {
6657 < 50)<= 93)) { return this.$lines[row] || "";
6658 < 50)<= 93)) { };
6659 < 50)<= 93)) { this.getLines = function(firstRow, lastRow) {
6660 < 50)<= 93)) { return this.$lines.slice(firstRow, lastRow + 1);
6661 < 50)<= 93)) { };
6662 < 50)<= 93)) { this.getAllLines = function() {
6663 < 50)<= 93)) { return this.getLines(0, this.getLength());
6664 < 50)<= 93)) { };
6665 < 50)<= 93)) { this.getLength = function() {
6666 < 50)<= 93)) { return this.$lines.length;
6667 < 50)<= 93)) { };
6668 < 50)<= 93)) { this.getTextRange = function(range) {
6669 < 50)<= 93)) { return this.getLinesForRange(range).join(this.getNewLineCharacter());
6670 < 50)<= 93)) { };
6671 < 50)<= 93)) { this.getLinesForRange = function(range) {
6672 < 50)<= 93)) { var lines;
6673 < 50)<= 93)) { if (range.start.row === range.end.row) {
6674 < 50)<= 93)) { lines = [this.getLine(range.start.row).substring(range.start.column, range.end.column)];
6675 < 50)<= 93)) { } else {
6676 < 50)<= 93)) { lines = this.getLines(range.start.row, range.end.row);
6677 < 50)<= 93)) { lines[0] = (lines[0] || "").substring(range.start.column);
6678 < 50)<= 93)) { var l = lines.length - 1;
6679 < 50)<= 93)) { if (range.end.row - range.start.row == l)
6680 < 50)<= 93)) { lines[l] = lines[l].substring(0, range.end.column);
6681 < 50)<= 93)) { }
6682 < 50)<= 93)) { return lines;
6683 < 50)<= 93)) { };
6684 < 50)<= 93)) { this.insertLines = function(row, lines) {
6685 < 50)<= 93)) { console.warn("Use of document.insertLines is deprecated. Use the insertFullLines method instead.");
6686 < 50)<= 93)) { return this.insertFullLines(row, lines);
6687 < 50)<= 93)) { };
6688 < 50)<= 93)) { this.removeLines = function(firstRow, lastRow) {
6689 < 50)<= 93)) { console.warn("Use of document.removeLines is deprecated. Use the removeFullLines method instead.");
6690 < 50)<= 93)) { return this.removeFullLines(firstRow, lastRow);
6691 < 50)<= 93)) { };
6692 < 50)<= 93)) { this.insertNewLine = function(position) {
6693 < 50)<= 93)) { console.warn("Use of document.insertNewLine is deprecated. Use insertMergedLines(position, ['', '']) instead.");
6694 < 50)<= 93)) { return this.insertMergedLines(position, ["", ""]);
6695 < 50)<= 93)) { };
6696 < 50)<= 93)) { this.insert = function(position, text) {
6697 < 50)<= 93)) { if (this.getLength() <= 1)
6698 < 50)<= 93)) {<= 1) this.$detectNewLine(text);
6699  
6700 < 50)<= 93)) {<= 1) return this.insertMergedLines(position, this.$split(text));
6701 < 50)<= 93)) {<= 1) };
6702 < 50)<= 93)) {<= 1) this.insertInLine = function(position, text) {
6703 < 50)<= 93)) {<= 1) var start = this.clippedPos(position.row, position.column);
6704 < 50)<= 93)) {<= 1) var end = this.pos(position.row, position.column + text.length);
6705  
6706 < 50)<= 93)) {<= 1) this.applyDelta({
6707 < 50)<= 93)) {<= 1) start: start,
6708 < 50)<= 93)) {<= 1) end: end,
6709 < 50)<= 93)) {<= 1) action: "insert",
6710 < 50)<= 93)) {<= 1) lines: [text]
6711 < 50)<= 93)) {<= 1) }, true);
6712  
6713 < 50)<= 93)) {<= 1) return this.clonePos(end);
6714 < 50)<= 93)) {<= 1) };
6715  
6716 < 50)<= 93)) {<= 1) this.clippedPos = function(row, column) {
6717 < 50)<= 93)) {<= 1) var length = this.getLength();
6718 < 50)<= 93)) {<= 1) if (row === undefined) {
6719 < 50)<= 93)) {<= 1) row = length;
6720 < 50)<= 93)) {<= 1) } else if (row < 0) {
6721 < 50)<= 93)) {<= 1)< 0) { row = 0;
6722 < 50)<= 93)) {<= 1)< 0) { } else if (row >= length) {
6723 < 50)<= 93)) {<= 1)< 0) { row = length - 1;
6724 < 50)<= 93)) {<= 1)< 0) { column = undefined;
6725 < 50)<= 93)) {<= 1)< 0) { }
6726 < 50)<= 93)) {<= 1)< 0) { var line = this.getLine(row);
6727 < 50)<= 93)) {<= 1)< 0) { if (column == undefined)
6728 < 50)<= 93)) {<= 1)< 0) { column = line.length;
6729 < 50)<= 93)) {<= 1)< 0) { column = Math.min(Math.max(column, 0), line.length);
6730 < 50)<= 93)) {<= 1)< 0) { return {row: row, column: column};
6731 < 50)<= 93)) {<= 1)< 0) { };
6732  
6733 < 50)<= 93)) {<= 1)< 0) { this.clonePos = function(pos) {
6734 < 50)<= 93)) {<= 1)< 0) { return {row: pos.row, column: pos.column};
6735 < 50)<= 93)) {<= 1)< 0) { };
6736  
6737 < 50)<= 93)) {<= 1)< 0) { this.pos = function(row, column) {
6738 < 50)<= 93)) {<= 1)< 0) { return {row: row, column: column};
6739 < 50)<= 93)) {<= 1)< 0) { };
6740  
6741 < 50)<= 93)) {<= 1)< 0) { this.$clipPosition = function(position) {
6742 < 50)<= 93)) {<= 1)< 0) { var length = this.getLength();
6743 < 50)<= 93)) {<= 1)< 0) { if (position.row >= length) {
6744 < 50)<= 93)) {<= 1)< 0) { position.row = Math.max(0, length - 1);
6745 < 50)<= 93)) {<= 1)< 0) { position.column = this.getLine(length - 1).length;
6746 < 50)<= 93)) {<= 1)< 0) { } else {
6747 < 50)<= 93)) {<= 1)< 0) { position.row = Math.max(0, position.row);
6748 < 50)<= 93)) {<= 1)< 0) { position.column = Math.min(Math.max(position.column, 0), this.getLine(position.row).length);
6749 < 50)<= 93)) {<= 1)< 0) { }
6750 < 50)<= 93)) {<= 1)< 0) { return position;
6751 < 50)<= 93)) {<= 1)< 0) { };
6752 < 50)<= 93)) {<= 1)< 0) { this.insertFullLines = function(row, lines) {
6753 < 50)<= 93)) {<= 1)< 0) { row = Math.min(Math.max(row, 0), this.getLength());
6754 < 50)<= 93)) {<= 1)< 0) { var column = 0;
6755 < 50)<= 93)) {<= 1)< 0) { if (row < this.getLength()) {
6756 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { lines = lines.concat([""]);
6757 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { column = 0;
6758 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { } else {
6759 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { lines = [""].concat(lines);
6760 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { row--;
6761 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { column = this.$lines[row].length;
6762 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { }
6763 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { this.insertMergedLines({row: row, column: column}, lines);
6764 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { };
6765 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { this.insertMergedLines = function(position, lines) {
6766 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { var start = this.clippedPos(position.row, position.column);
6767 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { var end = {
6768 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { row: start.row + lines.length - 1,
6769 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { column: (lines.length == 1 ? start.column : 0) + lines[lines.length - 1].length
6770 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { };
6771  
6772 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { this.applyDelta({
6773 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { start: start,
6774 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { end: end,
6775 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { action: "insert",
6776 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { lines: lines
6777 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { });
6778  
6779 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { return this.clonePos(end);
6780 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { };
6781 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { this.remove = function(range) {
6782 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { var start = this.clippedPos(range.start.row, range.start.column);
6783 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { var end = this.clippedPos(range.end.row, range.end.column);
6784 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { this.applyDelta({
6785 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { start: start,
6786 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { end: end,
6787 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { action: "remove",
6788 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { lines: this.getLinesForRange({start: start, end: end})
6789 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { });
6790 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { return this.clonePos(start);
6791 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { };
6792 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { this.removeInLine = function(row, startColumn, endColumn) {
6793 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { var start = this.clippedPos(row, startColumn);
6794 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { var end = this.clippedPos(row, endColumn);
6795  
6796 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { this.applyDelta({
6797 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { start: start,
6798 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { end: end,
6799 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { action: "remove",
6800 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { lines: this.getLinesForRange({start: start, end: end})
6801 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { }, true);
6802  
6803 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { return this.clonePos(start);
6804 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { };
6805 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { this.removeFullLines = function(firstRow, lastRow) {
6806 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { firstRow = Math.min(Math.max(0, firstRow), this.getLength() - 1);
6807 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { lastRow = Math.min(Math.max(0, lastRow ), this.getLength() - 1);
6808 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { var deleteFirstNewLine = lastRow == this.getLength() - 1 && firstRow > 0;
6809 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) { var deleteLastNewLine = lastRow < this.getLength() - 1;
6810 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1; var startRow = ( deleteFirstNewLine ? firstRow - 1 : firstRow );
6811 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1; var startCol = ( deleteFirstNewLine ? this.getLine(startRow).length : 0 );
6812 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1; var endRow = ( deleteLastNewLine ? lastRow + 1 : lastRow );
6813 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1; var endCol = ( deleteLastNewLine ? 0 : this.getLine(endRow).length );
6814 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1; var range = new Range(startRow, startCol, endRow, endCol);
6815 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1; var deletedLines = this.$lines.slice(firstRow, lastRow + 1);
6816  
6817 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1; this.applyDelta({
6818 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1; start: range.start,
6819 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1; end: range.end,
6820 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1; action: "remove",
6821 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1; lines: this.getLinesForRange(range)
6822 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1; });
6823 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1; return deletedLines;
6824 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1; };
6825 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1; this.removeNewLine = function(row) {
6826 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1; if (row < this.getLength() - 1 && row >= 0) {
6827 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row > this.applyDelta({
6828 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row > start: this.pos(row, this.getLine(row).length),
6829 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row > end: this.pos(row + 1, 0),
6830 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row > action: "remove",
6831 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row > lines: ["", ""]
6832 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row > });
6833 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row > }
6834 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row > };
6835 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row > this.replace = function(range, text) {
6836 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row > if (!(range instanceof Range))
6837 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row > range = Range.fromPoints(range.start, range.end);
6838 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row > if (text.length === 0 && range.isEmpty())
6839 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row > return range.start;
6840 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row > if (text == this.getTextRange(range))
6841 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row > return range.end;
6842  
6843 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row > this.remove(range);
6844 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row > var end;
6845 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row > if (text) {
6846 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row > end = this.insert(range.start, text);
6847 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row > }
6848 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row > else {
6849 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row > end = range.start;
6850 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row > }
6851  
6852 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row > return end;
6853 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row > };
6854 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row > this.applyDeltas = function(deltas) {
6855 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row > for (var i=0; i
6856 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6857 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6858 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6859 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6860 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >=0; i--) {
6861 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6862 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6863 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6864 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6865 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6866 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6867 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6868 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6869 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6870  
6871 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row > 20000)
6872 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6873 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6874 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6875 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6876  
6877 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6878 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6879 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6880 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6881 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6882 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6883 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6884 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6885 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6886 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6887 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row > l) {
6888 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6889 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6890 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6891 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6892 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6893 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6894 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6895 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6896 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6897 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6898 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6899 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6900 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6901 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6902 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6903 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6904 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6905 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6906 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6907 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6908 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6909 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6910 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6911 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6912 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6913 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6914 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6915 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6916 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6917 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6918 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6919 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6920 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6921 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6922 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6923 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6924 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6925 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6926 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6927  
6928 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6929 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6930  
6931 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6932  
6933 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6934 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >
6935  
6936 < 50)<= 93)) {<= 1)< 0) {< this.getLength()) {< this.getLength() - 1;< this.getLength() - 1 && row >background_tokenizer",["require","exports","module","ace/lib/oop","ace/lib/event_emitter"], function(require, exports, module) {
6937 < 50)<= 93)) {"use strict";
6938  
6939 < 50)<= 93)) {var oop = require("./lib/oop");
6940 < 50)<= 93)) {var EventEmitter = require("./lib/event_emitter").EventEmitter;
6941  
6942 < 50)<= 93)) {var BackgroundTokenizer = function(tokenizer, editor) {
6943 < 50)<= 93)) { this.running = false;
6944 < 50)<= 93)) { this.lines = [];
6945 < 50)<= 93)) { this.states = [];
6946 < 50)<= 93)) { this.currentLine = 0;
6947 < 50)<= 93)) { this.tokenizer = tokenizer;
6948  
6949 < 50)<= 93)) { var self = this;
6950  
6951 < 50)<= 93)) { this.$worker = function() {
6952 < 50)<= 93)) { if (!self.running) { return; }
6953  
6954 < 50)<= 93)) { var workerStart = new Date();
6955 < 50)<= 93)) { var currentLine = self.currentLine;
6956 < 50)<= 93)) { var endLine = -1;
6957 < 50)<= 93)) { var doc = self.doc;
6958  
6959 < 50)<= 93)) { var startLine = currentLine;
6960 < 50)<= 93)) { while (self.lines[currentLine])
6961 < 50)<= 93)) { currentLine++;
6962  
6963 < 50)<= 93)) { var len = doc.getLength();
6964 < 50)<= 93)) { var processedLines = 0;
6965 < 50)<= 93)) { self.running = false;
6966 < 50)<= 93)) { while (currentLine < len) {
6967 < 50)<= 93)) { self.$tokenizeRow(currentLine);
6968 < 50)<= 93)) { endLine = currentLine;
6969 < 50)<= 93)) { do {
6970 < 50)<= 93)) { currentLine++;
6971 < 50)<= 93)) { } while (self.lines[currentLine]);
6972 < 50)<= 93)) { processedLines ++;
6973 < 50)<= 93)) { if ((processedLines % 5 === 0) && (new Date() - workerStart) > 20) {
6974 < 50)<= 93)) { self.running = setTimeout(self.$worker, 20);
6975 < 50)<= 93)) { break;
6976 < 50)<= 93)) { }
6977 < 50)<= 93)) { }
6978 < 50)<= 93)) { self.currentLine = currentLine;
6979  
6980 < 50)<= 93)) { if (startLine <= endLine)
6981 < 50)<= 93)) { self.fireUpdateEvent(startLine, endLine);
6982 < 50)<= 93)) { };
6983 < 50)<= 93)) {};
6984  
6985 < 50)<= 93)) {(function(){
6986  
6987 < 50)<= 93)) { oop.implement(this, EventEmitter);
6988 < 50)<= 93)) { this.setTokenizer = function(tokenizer) {
6989 < 50)<= 93)) { this.tokenizer = tokenizer;
6990 < 50)<= 93)) { this.lines = [];
6991 < 50)<= 93)) { this.states = [];
6992  
6993 < 50)<= 93)) { this.start(0);
6994 < 50)<= 93)) { };
6995 < 50)<= 93)) { this.setDocument = function(doc) {
6996 < 50)<= 93)) { this.doc = doc;
6997 < 50)<= 93)) { this.lines = [];
6998 < 50)<= 93)) { this.states = [];
6999  
7000 < 50)<= 93)) { this.stop();
7001 < 50)<= 93)) { };
7002 < 50)<= 93)) { this.fireUpdateEvent = function(firstRow, lastRow) {
7003 < 50)<= 93)) { var data = {
7004 < 50)<= 93)) { first: firstRow,
7005 < 50)<= 93)) { last: lastRow
7006 < 50)<= 93)) { };
7007 < 50)<= 93)) { this._signal("update", {data: data});
7008 < 50)<= 93)) { };
7009 < 50)<= 93)) { this.start = function(startRow) {
7010 < 50)<= 93)) { this.currentLine = Math.min(startRow || 0, this.currentLine, this.doc.getLength());
7011 < 50)<= 93)) { this.lines.splice(this.currentLine, this.lines.length);
7012 < 50)<= 93)) { this.states.splice(this.currentLine, this.states.length);
7013  
7014 < 50)<= 93)) { this.stop();
7015 < 50)<= 93)) { this.running = setTimeout(this.$worker, 700);
7016 < 50)<= 93)) { };
7017  
7018 < 50)<= 93)) { this.scheduleStart = function() {
7019 < 50)<= 93)) { if (!this.running)
7020 < 50)<= 93)) { this.running = setTimeout(this.$worker, 700);
7021 < 50)<= 93)) { }
7022  
7023 < 50)<= 93)) { this.$updateOnChange = function(delta) {
7024 < 50)<= 93)) { var startRow = delta.start.row;
7025 < 50)<= 93)) { var len = delta.end.row - startRow;
7026  
7027 < 50)<= 93)) { if (len === 0) {
7028 < 50)<= 93)) { this.lines[startRow] = null;
7029 < 50)<= 93)) { } else if (delta.action == "remove") {
7030 < 50)<= 93)) { this.lines.splice(startRow, len + 1, null);
7031 < 50)<= 93)) { this.states.splice(startRow, len + 1, null);
7032 < 50)<= 93)) { } else {
7033 < 50)<= 93)) { var args = Array(len + 1);
7034 < 50)<= 93)) { args.unshift(startRow, 1);
7035 < 50)<= 93)) { this.lines.splice.apply(this.lines, args);
7036 < 50)<= 93)) { this.states.splice.apply(this.states, args);
7037 < 50)<= 93)) { }
7038  
7039 < 50)<= 93)) { this.currentLine = Math.min(startRow, this.currentLine, this.doc.getLength());
7040  
7041 < 50)<= 93)) { this.stop();
7042 < 50)<= 93)) { };
7043 < 50)<= 93)) { this.stop = function() {
7044 < 50)<= 93)) { if (this.running)
7045 < 50)<= 93)) { clearTimeout(this.running);
7046 < 50)<= 93)) { this.running = false;
7047 < 50)<= 93)) { };
7048 < 50)<= 93)) { this.getTokens = function(row) {
7049 < 50)<= 93)) { return this.lines[row] || this.$tokenizeRow(row);
7050 < 50)<= 93)) { };
7051 < 50)<= 93)) { this.getState = function(row) {
7052 < 50)<= 93)) { if (this.currentLine == row)
7053 < 50)<= 93)) { this.$tokenizeRow(row);
7054 < 50)<= 93)) { return this.states[row] || "start";
7055 < 50)<= 93)) { };
7056  
7057 < 50)<= 93)) { this.$tokenizeRow = function(row) {
7058 < 50)<= 93)) { var line = this.doc.getLine(row);
7059 < 50)<= 93)) { var state = this.states[row - 1];
7060  
7061 < 50)<= 93)) { var data = this.tokenizer.getLineTokens(line, state, row);
7062  
7063 < 50)<= 93)) { if (this.states[row] + "" !== data.state + "") {
7064 < 50)<= 93)) { this.states[row] = data.state;
7065 < 50)<= 93)) { this.lines[row + 1] = null;
7066 < 50)<= 93)) { if (this.currentLine > row + 1)
7067 < 50)<= 93)) { this.currentLine = row + 1;
7068 < 50)<= 93)) { } else if (this.currentLine == row) {
7069 < 50)<= 93)) { this.currentLine = row + 1;
7070 < 50)<= 93)) { }
7071  
7072 < 50)<= 93)) { return this.lines[row] = data.tokens;
7073 < 50)<= 93)) { };
7074  
7075 < 50)<= 93)) {}).call(BackgroundTokenizer.prototype);
7076  
7077 < 50)<= 93)) {exports.BackgroundTokenizer = BackgroundTokenizer;
7078 < 50)<= 93)) {});
7079  
7080 < 50)<= 93)) {ace.define("ace/search_highlight",["require","exports","module","ace/lib/lang","ace/lib/oop","ace/range"], function(require, exports, module) {
7081 < 50)<= 93)) {"use strict";
7082  
7083 < 50)<= 93)) {var lang = require("./lib/lang");
7084 < 50)<= 93)) {var oop = require("./lib/oop");
7085 < 50)<= 93)) {var Range = require("./range").Range;
7086  
7087 < 50)<= 93)) {var SearchHighlight = function(regExp, clazz, type) {
7088 < 50)<= 93)) { this.setRegexp(regExp);
7089 < 50)<= 93)) { this.clazz = clazz;
7090 < 50)<= 93)) { this.type = type || "text";
7091 < 50)<= 93)) {};
7092  
7093 < 50)<= 93)) {(function() {
7094 < 50)<= 93)) { this.MAX_RANGES = 500;
7095  
7096 < 50)<= 93)) { this.setRegexp = function(regExp) {
7097 < 50)<= 93)) { if (this.regExp+"" == regExp+"")
7098 < 50)<= 93)) { return;
7099 < 50)<= 93)) { this.regExp = regExp;
7100 < 50)<= 93)) { this.cache = [];
7101 < 50)<= 93)) { };
7102  
7103 < 50)<= 93)) { this.update = function(html, markerLayer, session, config) {
7104 < 50)<= 93)) { if (!this.regExp)
7105 < 50)<= 93)) { return;
7106 < 50)<= 93)) { var start = config.firstRow, end = config.lastRow;
7107  
7108 < 50)<= 93)) { for (var i = start; i <= end; i++) {
7109 < 50)<= 93)) {<= end; i++) { var ranges = this.cache[i];
7110 < 50)<= 93)) {<= end; i++) { if (ranges == null) {
7111 < 50)<= 93)) {<= end; i++) { ranges = lang.getMatchOffsets(session.getLine(i), this.regExp);
7112 < 50)<= 93)) {<= end; i++) { if (ranges.length > this.MAX_RANGES)
7113 < 50)<= 93)) {<= end; i++) { ranges = ranges.slice(0, this.MAX_RANGES);
7114 < 50)<= 93)) {<= end; i++) { ranges = ranges.map(function(match) {
7115 < 50)<= 93)) {<= end; i++) { return new Range(i, match.offset, i, match.offset + match.length);
7116 < 50)<= 93)) {<= end; i++) { });
7117 < 50)<= 93)) {<= end; i++) { this.cache[i] = ranges.length ? ranges : "";
7118 < 50)<= 93)) {<= end; i++) { }
7119  
7120 < 50)<= 93)) {<= end; i++) { for (var j = ranges.length; j --; ) {
7121 < 50)<= 93)) {<= end; i++) { markerLayer.drawSingleLineMarker(
7122 < 50)<= 93)) {<= end; i++) { html, ranges[j].toScreenRange(session), this.clazz, config);
7123 < 50)<= 93)) {<= end; i++) { }
7124 < 50)<= 93)) {<= end; i++) { }
7125 < 50)<= 93)) {<= end; i++) { };
7126  
7127 < 50)<= 93)) {<= end; i++) {}).call(SearchHighlight.prototype);
7128  
7129 < 50)<= 93)) {<= end; i++) {exports.SearchHighlight = SearchHighlight;
7130 < 50)<= 93)) {<= end; i++) {});
7131  
7132 < 50)<= 93)) {<= end; i++) {ace.define("ace/edit_session/fold_line",["require","exports","module","ace/range"], function(require, exports, module) {
7133 < 50)<= 93)) {"use strict";
7134  
7135 < 50)<= 93)) {var Range = require("../range").Range;
7136 < 50)<= 93)) {function FoldLine(foldData, folds) {
7137 < 50)<= 93)) { this.foldData = foldData;
7138 < 50)<= 93)) { if (Array.isArray(folds)) {
7139 < 50)<= 93)) { this.folds = folds;
7140 < 50)<= 93)) { } else {
7141 < 50)<= 93)) { folds = this.folds = [ folds ];
7142 < 50)<= 93)) { }
7143  
7144 < 50)<= 93)) { var last = folds[folds.length - 1];
7145 < 50)<= 93)) { this.range = new Range(folds[0].start.row, folds[0].start.column,
7146 < 50)<= 93)) { last.end.row, last.end.column);
7147 < 50)<= 93)) { this.start = this.range.start;
7148 < 50)<= 93)) { this.end = this.range.end;
7149  
7150 < 50)<= 93)) { this.folds.forEach(function(fold) {
7151 < 50)<= 93)) { fold.setFoldLine(this);
7152 < 50)<= 93)) { }, this);
7153 < 50)<= 93)) {}
7154  
7155 < 50)<= 93)) {(function() {
7156 < 50)<= 93)) { this.shiftRow = function(shift) {
7157 < 50)<= 93)) { this.start.row += shift;
7158 < 50)<= 93)) { this.end.row += shift;
7159 < 50)<= 93)) { this.folds.forEach(function(fold) {
7160 < 50)<= 93)) { fold.start.row += shift;
7161 < 50)<= 93)) { fold.end.row += shift;
7162 < 50)<= 93)) { });
7163 < 50)<= 93)) { };
7164  
7165 < 50)<= 93)) { this.addFold = function(fold) {
7166 < 50)<= 93)) { if (fold.sameRow) {
7167 < 50)<= 93)) { if (fold.start.row < this.startRow || fold.endRow > this.endRow) {
7168 < 50)<= 93)) {< this.startRow || fold.endRow > throw new Error("Can't add a fold to this FoldLine as it has no connection");
7169 < 50)<= 93)) {< this.startRow || fold.endRow > }
7170 < 50)<= 93)) {< this.startRow || fold.endRow > this.folds.push(fold);
7171 < 50)<= 93)) {< this.startRow || fold.endRow > this.folds.sort(function(a, b) {
7172 < 50)<= 93)) {< this.startRow || fold.endRow > return -a.range.compareEnd(b.start.row, b.start.column);
7173 < 50)<= 93)) {< this.startRow || fold.endRow > });
7174 < 50)<= 93)) {< this.startRow || fold.endRow > if (this.range.compareEnd(fold.start.row, fold.start.column) > 0) {
7175 < 50)<= 93)) {< this.startRow || fold.endRow > this.end.row = fold.end.row;
7176 < 50)<= 93)) {< this.startRow || fold.endRow > this.end.column = fold.end.column;
7177 < 50)<= 93)) {< this.startRow || fold.endRow > } else if (this.range.compareStart(fold.end.row, fold.end.column) < 0) {
7178 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) { this.start.row = fold.start.row;
7179 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) { this.start.column = fold.start.column;
7180 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) { }
7181 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) { } else if (fold.start.row == this.end.row) {
7182 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) { this.folds.push(fold);
7183 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) { this.end.row = fold.end.row;
7184 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) { this.end.column = fold.end.column;
7185 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) { } else if (fold.end.row == this.start.row) {
7186 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) { this.folds.unshift(fold);
7187 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) { this.start.row = fold.start.row;
7188 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) { this.start.column = fold.start.column;
7189 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) { } else {
7190 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) { throw new Error("Trying to add fold to FoldRow that doesn't have a matching row");
7191 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) { }
7192 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) { fold.foldLine = this;
7193 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) { };
7194  
7195 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) { this.containsRow = function(row) {
7196 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) { return row >= this.start.row && row <= this.end.row;
7197 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row; };
7198  
7199 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row; this.walk = function(callback, endRow, endColumn) {
7200 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row; var lastEnd = 0,
7201 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row; folds = this.folds,
7202 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row; fold,
7203 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row; cmp, stop, isNewRow = true;
7204  
7205 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row; if (endRow == null) {
7206 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row; endRow = this.end.row;
7207 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row; endColumn = this.end.column;
7208 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row; }
7209  
7210 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row; for (var i = 0; i < folds.length; i++) {
7211 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) { fold = folds[i];
7212  
7213 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) { cmp = fold.range.compareStart(endRow, endColumn);
7214 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) { if (cmp == -1) {
7215 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) { callback(null, endRow, endColumn, lastEnd, isNewRow);
7216 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) { return;
7217 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) { }
7218  
7219 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) { stop = callback(null, fold.start.row, fold.start.column, lastEnd, isNewRow);
7220 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) { stop = !stop && callback(fold.placeholder, fold.start.row, fold.start.column, lastEnd);
7221 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) { if (stop || cmp === 0) {
7222 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) { return;
7223 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) { }
7224 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) { isNewRow = !fold.sameRow;
7225 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) { lastEnd = fold.end.column;
7226 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) { }
7227 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) { callback(null, endRow, endColumn, lastEnd, isNewRow);
7228 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) { };
7229  
7230 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) { this.getNextFoldTo = function(row, column) {
7231 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) { var fold, cmp;
7232 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) { for (var i = 0; i < this.folds.length; i++) {
7233 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) { fold = this.folds[i];
7234 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) { cmp = fold.range.compareEnd(row, column);
7235 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) { if (cmp == -1) {
7236 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) { return {
7237 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) { fold: fold,
7238 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) { kind: "after"
7239 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) { };
7240 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) { } else if (cmp === 0) {
7241 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) { return {
7242 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) { fold: fold,
7243 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) { kind: "inside"
7244 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) { };
7245 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) { }
7246 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) { }
7247 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) { return null;
7248 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) { };
7249  
7250 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) { this.addRemoveChars = function(row, column, len) {
7251 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) { var ret = this.getNextFoldTo(row, column),
7252 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) { fold, folds;
7253 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) { if (ret) {
7254 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) { fold = ret.fold;
7255 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) { if (ret.kind == "inside"
7256 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) { && fold.start.column != column
7257 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) { && fold.start.row != row)
7258 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) { {
7259 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) { window.console && window.console.log(row, column, fold);
7260 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) { } else if (fold.start.row == row) {
7261 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) { folds = this.folds;
7262 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) { var i = folds.indexOf(fold);
7263 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) { if (i === 0) {
7264 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) { this.start.column += len;
7265 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) { }
7266 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) { for (i; i < folds.length; i++) {
7267 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) { fold = folds[i];
7268 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) { fold.start.column += len;
7269 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) { if (!fold.sameRow) {
7270 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) { return;
7271 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) { }
7272 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) { fold.end.column += len;
7273 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) { }
7274 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) { this.end.column += len;
7275 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) { }
7276 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) { }
7277 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) { };
7278  
7279 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) { this.split = function(row, column) {
7280 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) { var pos = this.getNextFoldTo(row, column);
7281  
7282 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) { if (!pos || pos.kind == "inside")
7283 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) { return null;
7284  
7285 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) { var fold = pos.fold;
7286 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) { var folds = this.folds;
7287 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) { var foldData = this.foldData;
7288  
7289 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) { var i = folds.indexOf(fold);
7290 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) { var foldBefore = folds[i - 1];
7291 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) { this.end.row = foldBefore.end.row;
7292 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) { this.end.column = foldBefore.end.column;
7293 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) { folds = folds.splice(i, folds.length - i);
7294  
7295 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) { var newFoldLine = new FoldLine(foldData, folds);
7296 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) { foldData.splice(foldData.indexOf(this) + 1, 0, newFoldLine);
7297 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) { return newFoldLine;
7298 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) { };
7299  
7300 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) { this.merge = function(foldLineNext) {
7301 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) { var folds = foldLineNext.folds;
7302 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) { for (var i = 0; i < folds.length; i++) {
7303 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) { this.addFold(folds[i]);
7304 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) { }
7305 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) { var foldData = this.foldData;
7306 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) { foldData.splice(foldData.indexOf(foldLineNext), 1);
7307 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) { };
7308  
7309 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) { this.toString = function() {
7310 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) { var ret = [this.range.toString() + ": [" ];
7311  
7312 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) { this.folds.forEach(function(fold) {
7313 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) { ret.push(" " + fold.toString());
7314 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) { });
7315 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) { ret.push("]");
7316 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) { return ret.join("\n");
7317 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) { };
7318  
7319 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) { this.idxToPosition = function(idx) {
7320 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) { var lastFoldEndColumn = 0;
7321  
7322 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) { for (var i = 0; i < this.folds.length; i++) {
7323 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) { var fold = this.folds[i];
7324  
7325 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) { idx -= fold.start.column - lastFoldEndColumn;
7326 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) { if (idx < 0) {
7327 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) { return {
7328 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) { row: fold.start.row,
7329 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) { column: fold.start.column + idx
7330 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) { };
7331 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) { }
7332  
7333 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) { idx -= fold.placeholder.length;
7334 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) { if (idx < 0) {
7335 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return fold.start;
7336 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7337  
7338 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { lastFoldEndColumn = fold.end.column;
7339 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7340  
7341 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return {
7342 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { row: this.end.row,
7343 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { column: this.end.column + idx
7344 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
7345 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
7346 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {}).call(FoldLine.prototype);
7347  
7348 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {exports.FoldLine = FoldLine;
7349 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {});
7350  
7351 < 50)<= 93)) {< this.startRow || fold.endRow >< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {ace.define("ace/range_list",["require","exports","module","ace/range"], function(require, exports, module) {
7352 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {"use strict";
7353 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {var Range = require("./range").Range;
7354 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {var comparePoints = Range.comparePoints;
7355  
7356 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {var RangeList = function() {
7357 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.ranges = [];
7358 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {};
7359  
7360 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {(function() {
7361 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.comparePoints = comparePoints;
7362  
7363 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.pointIndex = function(pos, excludeEdges, startIndex) {
7364 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var list = this.ranges;
7365  
7366 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { for (var i = startIndex || 0; i < list.length; i++) {
7367 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var range = list[i];
7368 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var cmpEnd = comparePoints(pos, range.end);
7369 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (cmpEnd > 0)
7370 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { continue;
7371 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var cmpStart = comparePoints(pos, range.start);
7372 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (cmpEnd === 0)
7373 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return excludeEdges && cmpStart !== 0 ? -i-2 : i;
7374 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (cmpStart > 0 || (cmpStart === 0 && !excludeEdges))
7375 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return i;
7376  
7377 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return -i-1;
7378 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7379 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return -i - 1;
7380 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
7381  
7382 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.add = function(range) {
7383 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var excludeEdges = !range.isEmpty();
7384 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var startIndex = this.pointIndex(range.start, excludeEdges);
7385 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (startIndex < 0)
7386 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { startIndex = -startIndex - 1;
7387  
7388 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var endIndex = this.pointIndex(range.end, excludeEdges, startIndex);
7389  
7390 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (endIndex < 0)
7391 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { endIndex = -endIndex - 1;
7392 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { else
7393 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { endIndex++;
7394 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return this.ranges.splice(startIndex, endIndex - startIndex, range);
7395 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
7396  
7397 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.addList = function(list) {
7398 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var removed = [];
7399 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { for (var i = list.length; i--; ) {
7400 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { removed.push.apply(removed, this.add(list[i]));
7401 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7402 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return removed;
7403 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
7404  
7405 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.substractPoint = function(pos) {
7406 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var i = this.pointIndex(pos);
7407  
7408 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (i >= 0)
7409 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return this.ranges.splice(i, 1);
7410 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
7411 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.merge = function() {
7412 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var removed = [];
7413 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var list = this.ranges;
7414  
7415 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { list = list.sort(function(a, b) {
7416 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return comparePoints(a.start, b.start);
7417 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { });
7418  
7419 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var next = list[0], range;
7420 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { for (var i = 1; i < list.length; i++) {
7421 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { range = next;
7422 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { next = list[i];
7423 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var cmp = comparePoints(range.end, next.start);
7424 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (cmp < 0)
7425 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { continue;
7426  
7427 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (cmp == 0 && !range.isEmpty() && !next.isEmpty())
7428 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { continue;
7429  
7430 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (comparePoints(range.end, next.end) < 0) {
7431 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { range.end.row = next.end.row;
7432 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { range.end.column = next.end.column;
7433 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7434  
7435 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { list.splice(i, 1);
7436 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { removed.push(next);
7437 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { next = range;
7438 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { i--;
7439 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7440  
7441 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.ranges = list;
7442  
7443 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return removed;
7444 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
7445  
7446 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.contains = function(row, column) {
7447 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return this.pointIndex({row: row, column: column}) >= 0;
7448 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
7449  
7450 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.containsPoint = function(pos) {
7451 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return this.pointIndex(pos) >= 0;
7452 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
7453  
7454 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.rangeAtPoint = function(pos) {
7455 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var i = this.pointIndex(pos);
7456 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (i >= 0)
7457 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return this.ranges[i];
7458 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
7459  
7460  
7461 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.clipRows = function(startRow, endRow) {
7462 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var list = this.ranges;
7463 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (list[0].start.row > endRow || list[list.length - 1].start.row < startRow)
7464 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return [];
7465  
7466 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var startIndex = this.pointIndex({row: startRow, column: 0});
7467 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (startIndex < 0)
7468 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { startIndex = -startIndex - 1;
7469 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var endIndex = this.pointIndex({row: endRow, column: 0}, startIndex);
7470 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (endIndex < 0)
7471 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { endIndex = -endIndex - 1;
7472  
7473 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var clipped = [];
7474 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { for (var i = startIndex; i < endIndex; i++) {
7475 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { clipped.push(list[i]);
7476 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7477 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return clipped;
7478 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
7479  
7480 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.removeAll = function() {
7481 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return this.ranges.splice(0, this.ranges.length);
7482 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
7483  
7484 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.attach = function(session) {
7485 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (this.session)
7486 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.detach();
7487  
7488 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.session = session;
7489 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.onChange = this.$onChange.bind(this);
7490  
7491 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.session.on('change', this.onChange);
7492 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
7493  
7494 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.detach = function() {
7495 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (!this.session)
7496 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return;
7497 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.session.removeListener('change', this.onChange);
7498 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.session = null;
7499 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
7500  
7501 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$onChange = function(delta) {
7502 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (delta.action == "insert"){
7503 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var start = delta.start;
7504 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var end = delta.end;
7505 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { } else {
7506 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var end = delta.start;
7507 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var start = delta.end;
7508 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7509 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var startRow = start.row;
7510 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var endRow = end.row;
7511 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var lineDif = endRow - startRow;
7512  
7513 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var colDiff = -start.column + end.column;
7514 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var ranges = this.ranges;
7515  
7516 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { for (var i = 0, n = ranges.length; i < n; i++) {
7517 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var r = ranges[i];
7518 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (r.end.row < startRow)
7519 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { continue;
7520 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (r.start.row > startRow)
7521 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { break;
7522  
7523 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (r.start.row == startRow && r.start.column >= start.column ) {
7524 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (r.start.column == start.column && this.$insertRight) {
7525 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { } else {
7526 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { r.start.column += colDiff;
7527 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { r.start.row += lineDif;
7528 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7529 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7530 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (r.end.row == startRow && r.end.column >= start.column) {
7531 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (r.end.column == start.column && this.$insertRight) {
7532 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { continue;
7533 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7534 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (r.end.column == start.column && colDiff > 0 && i < n - 1) {
7535 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (r.end.column > r.start.column && r.end.column == ranges[i+1].start.column)
7536 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { r.end.column -= colDiff;
7537 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7538 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { r.end.column += colDiff;
7539 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { r.end.row += lineDif;
7540 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7541 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7542  
7543 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (lineDif != 0 && i < n) {
7544 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { for (; i < n; i++) {
7545 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var r = ranges[i];
7546 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { r.start.row += lineDif;
7547 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { r.end.row += lineDif;
7548 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7549 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7550 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
7551  
7552 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {}).call(RangeList.prototype);
7553  
7554 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {exports.RangeList = RangeList;
7555 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {});
7556  
7557 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {ace.define("ace/edit_session/fold",["require","exports","module","ace/range","ace/range_list","ace/lib/oop"], function(require, exports, module) {
7558 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {"use strict";
7559  
7560 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {var Range = require("../range").Range;
7561 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {var RangeList = require("../range_list").RangeList;
7562 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {var oop = require("../lib/oop")
7563 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {var Fold = exports.Fold = function(range, placeholder) {
7564 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.foldLine = null;
7565 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.placeholder = placeholder;
7566 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.range = range;
7567 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.start = range.start;
7568 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.end = range.end;
7569  
7570 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.sameRow = range.start.row == range.end.row;
7571 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.subFolds = this.ranges = [];
7572 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {};
7573  
7574 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {oop.inherits(Fold, RangeList);
7575  
7576 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {(function() {
7577  
7578 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.toString = function() {
7579 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return '"' + this.placeholder + '" ' + this.range.toString();
7580 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
7581  
7582 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.setFoldLine = function(foldLine) {
7583 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.foldLine = foldLine;
7584 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.subFolds.forEach(function(fold) {
7585 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { fold.setFoldLine(foldLine);
7586 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { });
7587 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
7588  
7589 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.clone = function() {
7590 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var range = this.range.clone();
7591 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var fold = new Fold(range, this.placeholder);
7592 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.subFolds.forEach(function(subFold) {
7593 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { fold.subFolds.push(subFold.clone());
7594 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { });
7595 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { fold.collapseChildren = this.collapseChildren;
7596 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return fold;
7597 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
7598  
7599 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.addSubFold = function(fold) {
7600 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (this.range.isEqual(fold))
7601 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return;
7602  
7603 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (!this.range.containsRange(fold))
7604 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { throw new Error("A fold can't intersect already existing fold" + fold.range + this.range);
7605 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { consumeRange(fold, this.start);
7606  
7607 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var row = fold.start.row, column = fold.start.column;
7608 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { for (var i = 0, cmp = -1; i < this.subFolds.length; i++) {
7609 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { cmp = this.subFolds[i].range.compare(row, column);
7610 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (cmp != 1)
7611 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { break;
7612 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7613 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var afterStart = this.subFolds[i];
7614  
7615 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (cmp == 0)
7616 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return afterStart.addSubFold(fold);
7617 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var row = fold.range.end.row, column = fold.range.end.column;
7618 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { for (var j = i, cmp = -1; j < this.subFolds.length; j++) {
7619 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { cmp = this.subFolds[j].range.compare(row, column);
7620 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (cmp != 1)
7621 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { break;
7622 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7623 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var afterEnd = this.subFolds[j];
7624  
7625 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (cmp == 0)
7626 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { throw new Error("A fold can't intersect already existing fold" + fold.range + this.range);
7627  
7628 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var consumedFolds = this.subFolds.splice(i, j - i, fold);
7629 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { fold.setFoldLine(this.foldLine);
7630  
7631 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return fold;
7632 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
7633  
7634 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.restoreRange = function(range) {
7635 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return restoreRange(range, this.start);
7636 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
7637  
7638 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {}).call(Fold.prototype);
7639  
7640 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {function consumePoint(point, anchor) {
7641 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { point.row -= anchor.row;
7642 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (point.row == 0)
7643 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { point.column -= anchor.column;
7644 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {}
7645 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {function consumeRange(range, anchor) {
7646 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { consumePoint(range.start, anchor);
7647 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { consumePoint(range.end, anchor);
7648 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {}
7649 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {function restorePoint(point, anchor) {
7650 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (point.row == 0)
7651 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { point.column += anchor.column;
7652 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { point.row += anchor.row;
7653 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {}
7654 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {function restoreRange(range, anchor) {
7655 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { restorePoint(range.start, anchor);
7656 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { restorePoint(range.end, anchor);
7657 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {}
7658  
7659 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {});
7660  
7661 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {ace.define("ace/edit_session/folding",["require","exports","module","ace/range","ace/edit_session/fold_line","ace/edit_session/fold","ace/token_iterator"], function(require, exports, module) {
7662 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {"use strict";
7663  
7664 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {var Range = require("../range").Range;
7665 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {var FoldLine = require("./fold_line").FoldLine;
7666 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {var Fold = require("./fold").Fold;
7667 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {var TokenIterator = require("../token_iterator").TokenIterator;
7668  
7669 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {function Folding() {
7670 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.getFoldAt = function(row, column, side) {
7671 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var foldLine = this.getFoldLine(row);
7672 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (!foldLine)
7673 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return null;
7674  
7675 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var folds = foldLine.folds;
7676 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { for (var i = 0; i < folds.length; i++) {
7677 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var fold = folds[i];
7678 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (fold.range.contains(row, column)) {
7679 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (side == 1 && fold.range.isEnd(row, column)) {
7680 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { continue;
7681 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { } else if (side == -1 && fold.range.isStart(row, column)) {
7682 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { continue;
7683 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7684 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return fold;
7685 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7686 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7687 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
7688 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.getFoldsInRange = function(range) {
7689 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var start = range.start;
7690 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var end = range.end;
7691 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var foldLines = this.$foldData;
7692 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var foundFolds = [];
7693  
7694 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { start.column += 1;
7695 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { end.column -= 1;
7696  
7697 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { for (var i = 0; i < foldLines.length; i++) {
7698 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var cmp = foldLines[i].range.compareRange(range);
7699 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (cmp == 2) {
7700 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { continue;
7701 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7702 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { else if (cmp == -2) {
7703 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { break;
7704 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7705  
7706 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var folds = foldLines[i].folds;
7707 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { for (var j = 0; j < folds.length; j++) {
7708 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var fold = folds[j];
7709 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { cmp = fold.range.compareRange(range);
7710 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (cmp == -2) {
7711 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { break;
7712 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { } else if (cmp == 2) {
7713 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { continue;
7714 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { } else
7715 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (cmp == 42) {
7716 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { break;
7717 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7718 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { foundFolds.push(fold);
7719 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7720 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7721 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { start.column -= 1;
7722 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { end.column += 1;
7723  
7724 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return foundFolds;
7725 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
7726  
7727 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.getFoldsInRangeList = function(ranges) {
7728 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (Array.isArray(ranges)) {
7729 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var folds = [];
7730 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { ranges.forEach(function(range) {
7731 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { folds = folds.concat(this.getFoldsInRange(range));
7732 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }, this);
7733 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { } else {
7734 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var folds = this.getFoldsInRange(ranges);
7735 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7736 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return folds;
7737 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
7738 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.getAllFolds = function() {
7739 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var folds = [];
7740 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var foldLines = this.$foldData;
7741  
7742 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { for (var i = 0; i < foldLines.length; i++)
7743 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { for (var j = 0; j < foldLines[i].folds.length; j++)
7744 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { folds.push(foldLines[i].folds[j]);
7745  
7746 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return folds;
7747 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
7748 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.getFoldStringAt = function(row, column, trim, foldLine) {
7749 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { foldLine = foldLine || this.getFoldLine(row);
7750 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (!foldLine)
7751 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return null;
7752  
7753 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var lastFold = {
7754 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { end: { column: 0 }
7755 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
7756 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var str, fold;
7757 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { for (var i = 0; i < foldLine.folds.length; i++) {
7758 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { fold = foldLine.folds[i];
7759 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var cmp = fold.range.compareEnd(row, column);
7760 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (cmp == -1) {
7761 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { str = this
7762 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { .getLine(fold.start.row)
7763 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { .substring(lastFold.end.column, fold.start.column);
7764 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { break;
7765 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7766 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { else if (cmp === 0) {
7767 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return null;
7768 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7769 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { lastFold = fold;
7770 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7771 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (!str)
7772 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { str = this.getLine(fold.start.row).substring(lastFold.end.column);
7773  
7774 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (trim == -1)
7775 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return str.substring(0, column - lastFold.end.column);
7776 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { else if (trim == 1)
7777 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return str.substring(column - lastFold.end.column);
7778 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { else
7779 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return str;
7780 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
7781  
7782 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.getFoldLine = function(docRow, startFoldLine) {
7783 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var foldData = this.$foldData;
7784 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var i = 0;
7785 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (startFoldLine)
7786 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { i = foldData.indexOf(startFoldLine);
7787 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (i == -1)
7788 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { i = 0;
7789 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { for (i; i < foldData.length; i++) {
7790 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var foldLine = foldData[i];
7791 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (foldLine.start.row <= docRow && foldLine.end.row >= docRow) {
7792 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return foldLine;
7793 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { } else if (foldLine.end.row > docRow) {
7794 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return null;
7795 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7796 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7797 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return null;
7798 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
7799 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.getNextFoldLine = function(docRow, startFoldLine) {
7800 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var foldData = this.$foldData;
7801 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var i = 0;
7802 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (startFoldLine)
7803 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { i = foldData.indexOf(startFoldLine);
7804 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (i == -1)
7805 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { i = 0;
7806 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { for (i; i < foldData.length; i++) {
7807 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var foldLine = foldData[i];
7808 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (foldLine.end.row >= docRow) {
7809 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return foldLine;
7810 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7811 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7812 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return null;
7813 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
7814  
7815 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.getFoldedRowCount = function(first, last) {
7816 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var foldData = this.$foldData, rowCount = last-first+1;
7817 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { for (var i = 0; i < foldData.length; i++) {
7818 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var foldLine = foldData[i],
7819 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { end = foldLine.end.row,
7820 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { start = foldLine.start.row;
7821 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (end >= last) {
7822 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (start < last) {
7823 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (start >= first)
7824 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { rowCount -= last-start;
7825 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { else
7826 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { rowCount = 0; // in one fold
7827 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7828 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { break;
7829 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { } else if (end >= first){
7830 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (start >= first) // fold inside range
7831 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { rowCount -= end-start;
7832 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { else
7833 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { rowCount -= end-first+1;
7834 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7835 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7836 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return rowCount;
7837 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
7838  
7839 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$addFoldLine = function(foldLine) {
7840 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$foldData.push(foldLine);
7841 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$foldData.sort(function(a, b) {
7842 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return a.start.row - b.start.row;
7843 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { });
7844 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return foldLine;
7845 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
7846 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.addFold = function(placeholder, range) {
7847 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var foldData = this.$foldData;
7848 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var added = false;
7849 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var fold;
7850  
7851 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (placeholder instanceof Fold)
7852 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { fold = placeholder;
7853 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { else {
7854 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { fold = new Fold(range, placeholder);
7855 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { fold.collapseChildren = range.collapseChildren;
7856 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7857 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$clipRangeToDocument(fold.range);
7858  
7859 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var startRow = fold.start.row;
7860 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var startColumn = fold.start.column;
7861 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var endRow = fold.end.row;
7862 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var endColumn = fold.end.column;
7863 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (!(startRow < endRow ||
7864 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { startRow == endRow && startColumn <= endColumn - 2))
7865 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { throw new Error("The range has to be at least 2 characters width");
7866  
7867 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var startFold = this.getFoldAt(startRow, startColumn, 1);
7868 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var endFold = this.getFoldAt(endRow, endColumn, -1);
7869 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (startFold && endFold == startFold)
7870 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return startFold.addSubFold(fold);
7871  
7872 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (startFold && !startFold.range.isStart(startRow, startColumn))
7873 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.removeFold(startFold);
7874  
7875 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (endFold && !endFold.range.isEnd(endRow, endColumn))
7876 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.removeFold(endFold);
7877 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var folds = this.getFoldsInRange(fold.range);
7878 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (folds.length > 0) {
7879 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.removeFolds(folds);
7880 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { folds.forEach(function(subFold) {
7881 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { fold.addSubFold(subFold);
7882 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { });
7883 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7884  
7885 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { for (var i = 0; i < foldData.length; i++) {
7886 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var foldLine = foldData[i];
7887 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (endRow == foldLine.start.row) {
7888 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { foldLine.addFold(fold);
7889 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { added = true;
7890 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { break;
7891 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { } else if (startRow == foldLine.end.row) {
7892 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { foldLine.addFold(fold);
7893 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { added = true;
7894 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (!fold.sameRow) {
7895 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var foldLineNext = foldData[i + 1];
7896 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (foldLineNext && foldLineNext.start.row == endRow) {
7897 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { foldLine.merge(foldLineNext);
7898 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { break;
7899 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7900 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7901 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { break;
7902 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { } else if (endRow <= foldLine.start.row) {
7903 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { break;
7904 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7905 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7906  
7907 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (!added)
7908 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { foldLine = this.$addFoldLine(new FoldLine(this.$foldData, fold));
7909  
7910 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (this.$useWrapMode)
7911 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$updateWrapData(foldLine.start.row, foldLine.start.row);
7912 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { else
7913 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$updateRowLengthCache(foldLine.start.row, foldLine.start.row);
7914 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$modified = true;
7915 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this._signal("changeFold", { data: fold, action: "add" });
7916  
7917 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return fold;
7918 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
7919  
7920 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.addFolds = function(folds) {
7921 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { folds.forEach(function(fold) {
7922 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.addFold(fold);
7923 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }, this);
7924 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
7925  
7926 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.removeFold = function(fold) {
7927 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var foldLine = fold.foldLine;
7928 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var startRow = foldLine.start.row;
7929 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var endRow = foldLine.end.row;
7930  
7931 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var foldLines = this.$foldData;
7932 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var folds = foldLine.folds;
7933 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (folds.length == 1) {
7934 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { foldLines.splice(foldLines.indexOf(foldLine), 1);
7935 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { } else
7936 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (foldLine.range.isEnd(fold.end.row, fold.end.column)) {
7937 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { folds.pop();
7938 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { foldLine.end.row = folds[folds.length - 1].end.row;
7939 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { foldLine.end.column = folds[folds.length - 1].end.column;
7940 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { } else
7941 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (foldLine.range.isStart(fold.start.row, fold.start.column)) {
7942 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { folds.shift();
7943 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { foldLine.start.row = folds[0].start.row;
7944 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { foldLine.start.column = folds[0].start.column;
7945 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { } else
7946 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (fold.sameRow) {
7947 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { folds.splice(folds.indexOf(fold), 1);
7948 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { } else
7949 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { {
7950 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var newFoldLine = foldLine.split(fold.start.row, fold.start.column);
7951 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { folds = newFoldLine.folds;
7952 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { folds.shift();
7953 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { newFoldLine.start.row = folds[0].start.row;
7954 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { newFoldLine.start.column = folds[0].start.column;
7955 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7956  
7957 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (!this.$updating) {
7958 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (this.$useWrapMode)
7959 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$updateWrapData(startRow, endRow);
7960 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { else
7961 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$updateRowLengthCache(startRow, endRow);
7962 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7963 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$modified = true;
7964 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this._signal("changeFold", { data: fold, action: "remove" });
7965 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
7966  
7967 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.removeFolds = function(folds) {
7968 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var cloneFolds = [];
7969 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { for (var i = 0; i < folds.length; i++) {
7970 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { cloneFolds.push(folds[i]);
7971 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7972  
7973 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { cloneFolds.forEach(function(fold) {
7974 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.removeFold(fold);
7975 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }, this);
7976 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$modified = true;
7977 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
7978  
7979 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.expandFold = function(fold) {
7980 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.removeFold(fold);
7981 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { fold.subFolds.forEach(function(subFold) {
7982 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { fold.restoreRange(subFold);
7983 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.addFold(subFold);
7984 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }, this);
7985 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (fold.collapseChildren > 0) {
7986 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.foldAll(fold.start.row+1, fold.end.row, fold.collapseChildren-1);
7987 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
7988 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { fold.subFolds = [];
7989 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
7990  
7991 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.expandFolds = function(folds) {
7992 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { folds.forEach(function(fold) {
7993 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.expandFold(fold);
7994 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }, this);
7995 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
7996  
7997 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.unfold = function(location, expandInner) {
7998 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var range, folds;
7999 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (location == null) {
8000 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { range = new Range(0, 0, this.getLength(), 0);
8001 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { expandInner = true;
8002 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { } else if (typeof location == "number")
8003 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { range = new Range(location, 0, location, this.getLine(location).length);
8004 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { else if ("row" in location)
8005 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { range = Range.fromPoints(location, location);
8006 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { else
8007 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { range = location;
8008  
8009 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { folds = this.getFoldsInRangeList(range);
8010 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (expandInner) {
8011 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.removeFolds(folds);
8012 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { } else {
8013 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var subFolds = folds;
8014 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { while (subFolds.length) {
8015 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.expandFolds(subFolds);
8016 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { subFolds = this.getFoldsInRangeList(range);
8017 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8018 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8019 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (folds.length)
8020 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return folds;
8021 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
8022 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.isRowFolded = function(docRow, startFoldRow) {
8023 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return !!this.getFoldLine(docRow, startFoldRow);
8024 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
8025  
8026 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.getRowFoldEnd = function(docRow, startFoldRow) {
8027 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var foldLine = this.getFoldLine(docRow, startFoldRow);
8028 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return foldLine ? foldLine.end.row : docRow;
8029 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
8030  
8031 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.getRowFoldStart = function(docRow, startFoldRow) {
8032 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var foldLine = this.getFoldLine(docRow, startFoldRow);
8033 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return foldLine ? foldLine.start.row : docRow;
8034 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
8035  
8036 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.getFoldDisplayLine = function(foldLine, endRow, endColumn, startRow, startColumn) {
8037 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (startRow == null)
8038 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { startRow = foldLine.start.row;
8039 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (startColumn == null)
8040 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { startColumn = 0;
8041 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (endRow == null)
8042 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { endRow = foldLine.end.row;
8043 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (endColumn == null)
8044 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { endColumn = this.getLine(endRow).length;
8045 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var doc = this.doc;
8046 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var textLine = "";
8047  
8048 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { foldLine.walk(function(placeholder, row, column, lastColumn) {
8049 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (row < startRow)
8050 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return;
8051 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (row == startRow) {
8052 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (column < startColumn)
8053 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return;
8054 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { lastColumn = Math.max(startColumn, lastColumn);
8055 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8056  
8057 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (placeholder != null) {
8058 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { textLine += placeholder;
8059 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { } else {
8060 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { textLine += doc.getLine(row).substring(lastColumn, column);
8061 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8062 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }, endRow, endColumn);
8063 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return textLine;
8064 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
8065  
8066 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.getDisplayLine = function(row, endColumn, startRow, startColumn) {
8067 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var foldLine = this.getFoldLine(row);
8068  
8069 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (!foldLine) {
8070 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var line;
8071 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { line = this.doc.getLine(row);
8072 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return line.substring(startColumn || 0, endColumn || line.length);
8073 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { } else {
8074 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return this.getFoldDisplayLine(
8075 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { foldLine, row, endColumn, startRow, startColumn);
8076 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8077 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
8078  
8079 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$cloneFoldData = function() {
8080 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var fd = [];
8081 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { fd = this.$foldData.map(function(foldLine) {
8082 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var folds = foldLine.folds.map(function(fold) {
8083 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return fold.clone();
8084 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { });
8085 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return new FoldLine(fd, folds);
8086 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { });
8087  
8088 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return fd;
8089 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
8090  
8091 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.toggleFold = function(tryToUnfold) {
8092 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var selection = this.selection;
8093 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var range = selection.getRange();
8094 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var fold;
8095 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var bracketPos;
8096  
8097 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (range.isEmpty()) {
8098 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var cursor = range.start;
8099 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { fold = this.getFoldAt(cursor.row, cursor.column);
8100  
8101 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (fold) {
8102 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.expandFold(fold);
8103 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return;
8104 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { } else if (bracketPos = this.findMatchingBracket(cursor)) {
8105 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (range.comparePoint(bracketPos) == 1) {
8106 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { range.end = bracketPos;
8107 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { } else {
8108 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { range.start = bracketPos;
8109 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { range.start.column++;
8110 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { range.end.column--;
8111 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8112 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { } else if (bracketPos = this.findMatchingBracket({row: cursor.row, column: cursor.column + 1})) {
8113 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (range.comparePoint(bracketPos) == 1)
8114 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { range.end = bracketPos;
8115 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { else
8116 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { range.start = bracketPos;
8117  
8118 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { range.start.column++;
8119 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { } else {
8120 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { range = this.getCommentFoldRange(cursor.row, cursor.column) || range;
8121 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8122 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { } else {
8123 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var folds = this.getFoldsInRange(range);
8124 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (tryToUnfold && folds.length) {
8125 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.expandFolds(folds);
8126 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return;
8127 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { } else if (folds.length == 1 ) {
8128 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { fold = folds[0];
8129 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8130 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8131  
8132 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (!fold)
8133 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { fold = this.getFoldAt(range.start.row, range.start.column);
8134  
8135 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (fold && fold.range.toString() == range.toString()) {
8136 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.expandFold(fold);
8137 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return;
8138 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8139  
8140 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var placeholder = "...";
8141 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (!range.isMultiLine()) {
8142 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { placeholder = this.getTextRange(range);
8143 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (placeholder.length < 4)
8144 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return;
8145 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { placeholder = placeholder.trim().substring(0, 2) + "..";
8146 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8147  
8148 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.addFold(placeholder, range);
8149 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
8150  
8151 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.getCommentFoldRange = function(row, column, dir) {
8152 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var iterator = new TokenIterator(this, row, column);
8153 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var token = iterator.getCurrentToken();
8154 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (token && /^comment|string/.test(token.type)) {
8155 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var range = new Range();
8156 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var re = new RegExp(token.type.replace(/\..*/, "\\."));
8157 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (dir != 1) {
8158 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { do {
8159 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { token = iterator.stepBackward();
8160 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { } while (token && re.test(token.type));
8161 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { iterator.stepForward();
8162 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8163  
8164 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { range.start.row = iterator.getCurrentTokenRow();
8165 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { range.start.column = iterator.getCurrentTokenColumn() + 2;
8166  
8167 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { iterator = new TokenIterator(this, row, column);
8168  
8169 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (dir != -1) {
8170 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { do {
8171 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { token = iterator.stepForward();
8172 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { } while (token && re.test(token.type));
8173 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { token = iterator.stepBackward();
8174 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { } else
8175 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { token = iterator.getCurrentToken();
8176  
8177 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { range.end.row = iterator.getCurrentTokenRow();
8178 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { range.end.column = iterator.getCurrentTokenColumn() + token.value.length - 2;
8179 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return range;
8180 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8181 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
8182  
8183 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.foldAll = function(startRow, endRow, depth) {
8184 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (depth == undefined)
8185 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { depth = 100000; // JSON.stringify doesn't hanle Infinity
8186 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var foldWidgets = this.foldWidgets;
8187 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (!foldWidgets)
8188 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return; // mode doesn't support folding
8189 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { endRow = endRow || this.getLength();
8190 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { startRow = startRow || 0;
8191 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { for (var row = startRow; row < endRow; row++) {
8192 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (foldWidgets[row] == null)
8193 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { foldWidgets[row] = this.getFoldWidget(row);
8194 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (foldWidgets[row] != "start")
8195 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { continue;
8196  
8197 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var range = this.getFoldWidgetRange(row);
8198 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (range && range.isMultiLine()
8199 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { && range.end.row <= endRow
8200 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { && range.start.row >= startRow
8201 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { ) {
8202 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { row = range.end.row;
8203 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { try {
8204 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var fold = this.addFold("...", range);
8205 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (fold)
8206 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { fold.collapseChildren = depth;
8207 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { } catch(e) {}
8208 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8209 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8210 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
8211 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$foldStyles = {
8212 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { "manual": 1,
8213 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { "markbegin": 1,
8214 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { "markbeginend": 1
8215 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
8216 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$foldStyle = "markbegin";
8217 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.setFoldStyle = function(style) {
8218 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (!this.$foldStyles[style])
8219 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { throw new Error("invalid fold style: " + style + "[" + Object.keys(this.$foldStyles).join(", ") + "]");
8220  
8221 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (this.$foldStyle == style)
8222 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return;
8223  
8224 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$foldStyle = style;
8225  
8226 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (style == "manual")
8227 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.unfold();
8228 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var mode = this.$foldMode;
8229 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$setFolding(null);
8230 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$setFolding(mode);
8231 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
8232  
8233 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$setFolding = function(foldMode) {
8234 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (this.$foldMode == foldMode)
8235 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return;
8236  
8237 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$foldMode = foldMode;
8238  
8239 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.off('change', this.$updateFoldWidgets);
8240 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.off('tokenizerUpdate', this.$tokenizerUpdateFoldWidgets);
8241 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this._signal("changeAnnotation");
8242  
8243 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (!foldMode || this.$foldStyle == "manual") {
8244 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.foldWidgets = null;
8245 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return;
8246 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8247  
8248 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.foldWidgets = [];
8249 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.getFoldWidget = foldMode.getFoldWidget.bind(foldMode, this, this.$foldStyle);
8250 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.getFoldWidgetRange = foldMode.getFoldWidgetRange.bind(foldMode, this, this.$foldStyle);
8251  
8252 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$updateFoldWidgets = this.updateFoldWidgets.bind(this);
8253 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$tokenizerUpdateFoldWidgets = this.tokenizerUpdateFoldWidgets.bind(this);
8254 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.on('change', this.$updateFoldWidgets);
8255 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.on('tokenizerUpdate', this.$tokenizerUpdateFoldWidgets);
8256 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
8257  
8258 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.getParentFoldRangeData = function (row, ignoreCurrent) {
8259 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var fw = this.foldWidgets;
8260 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (!fw || (ignoreCurrent && fw[row]))
8261 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return {};
8262  
8263 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var i = row - 1, firstRange;
8264 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { while (i >= 0) {
8265 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var c = fw[i];
8266 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (c == null)
8267 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { c = fw[i] = this.getFoldWidget(i);
8268  
8269 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (c == "start") {
8270 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var range = this.getFoldWidgetRange(i);
8271 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (!firstRange)
8272 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { firstRange = range;
8273 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (range && range.end.row >= row)
8274 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { break;
8275 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8276 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { i--;
8277 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8278  
8279 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return {
8280 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { range: i !== -1 && range,
8281 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { firstRange: firstRange
8282 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
8283 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
8284  
8285 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.onFoldWidgetClick = function(row, e) {
8286 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { e = e.domEvent;
8287 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var options = {
8288 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { children: e.shiftKey,
8289 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { all: e.ctrlKey || e.metaKey,
8290 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { siblings: e.altKey
8291 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
8292  
8293 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var range = this.$toggleFoldWidget(row, options);
8294 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (!range) {
8295 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var el = (e.target || e.srcElement);
8296 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (el && /ace_fold-widget/.test(el.className))
8297 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { el.className += " ace_invalid";
8298 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8299 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
8300  
8301 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$toggleFoldWidget = function(row, options) {
8302 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (!this.getFoldWidget)
8303 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return;
8304 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var type = this.getFoldWidget(row);
8305 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var line = this.getLine(row);
8306  
8307 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var dir = type === "end" ? -1 : 1;
8308 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var fold = this.getFoldAt(row, dir === -1 ? 0 : line.length, dir);
8309  
8310 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (fold) {
8311 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (options.children || options.all)
8312 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.removeFold(fold);
8313 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { else
8314 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.expandFold(fold);
8315 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return fold;
8316 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8317  
8318 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var range = this.getFoldWidgetRange(row, true);
8319 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (range && !range.isMultiLine()) {
8320 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { fold = this.getFoldAt(range.start.row, range.start.column, 1);
8321 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (fold && range.isEqual(fold.range)) {
8322 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.removeFold(fold);
8323 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return fold;
8324 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8325 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8326  
8327 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (options.siblings) {
8328 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var data = this.getParentFoldRangeData(row);
8329 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (data.range) {
8330 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var startRow = data.range.start.row + 1;
8331 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var endRow = data.range.end.row;
8332 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8333 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.foldAll(startRow, endRow, options.all ? 10000 : 0);
8334 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { } else if (options.children) {
8335 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { endRow = range ? range.end.row : this.getLength();
8336 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.foldAll(row + 1, endRow, options.all ? 10000 : 0);
8337 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { } else if (range) {
8338 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (options.all)
8339 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { range.collapseChildren = 10000;
8340 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.addFold("...", range);
8341 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8342  
8343 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return range;
8344 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
8345  
8346  
8347  
8348 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.toggleFoldWidget = function(toggleParent) {
8349 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var row = this.selection.getCursor().row;
8350 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { row = this.getRowFoldStart(row);
8351 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var range = this.$toggleFoldWidget(row, {});
8352  
8353 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (range)
8354 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return;
8355 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var data = this.getParentFoldRangeData(row, true);
8356 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { range = data.range || data.firstRange;
8357  
8358 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (range) {
8359 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { row = range.start.row;
8360 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var fold = this.getFoldAt(row, this.getLine(row).length, 1);
8361  
8362 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (fold) {
8363 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.removeFold(fold);
8364 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { } else {
8365 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.addFold("...", range);
8366 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8367 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8368 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
8369  
8370 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.updateFoldWidgets = function(delta) {
8371 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var firstRow = delta.start.row;
8372 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var len = delta.end.row - firstRow;
8373  
8374 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (len === 0) {
8375 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.foldWidgets[firstRow] = null;
8376 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { } else if (delta.action == 'remove') {
8377 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.foldWidgets.splice(firstRow, len + 1, null);
8378 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { } else {
8379 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var args = Array(len + 1);
8380 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { args.unshift(firstRow, 1);
8381 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.foldWidgets.splice.apply(this.foldWidgets, args);
8382 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8383 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
8384 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.tokenizerUpdateFoldWidgets = function(e) {
8385 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var rows = e.data;
8386 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (rows.first != rows.last) {
8387 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (this.foldWidgets.length > rows.first)
8388 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.foldWidgets.splice(rows.first, this.foldWidgets.length);
8389 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8390 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
8391 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {}
8392  
8393 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {exports.Folding = Folding;
8394  
8395 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {});
8396  
8397 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {ace.define("ace/edit_session/bracket_match",["require","exports","module","ace/token_iterator","ace/range"], function(require, exports, module) {
8398 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {"use strict";
8399  
8400 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {var TokenIterator = require("../token_iterator").TokenIterator;
8401 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {var Range = require("../range").Range;
8402  
8403  
8404 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {function BracketMatch() {
8405  
8406 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.findMatchingBracket = function(position, chr) {
8407 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (position.column == 0) return null;
8408  
8409 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var charBeforeCursor = chr || this.getLine(position.row).charAt(position.column-1);
8410 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (charBeforeCursor == "") return null;
8411  
8412 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var match = charBeforeCursor.match(/([\(\[\{])|([\)\]\}])/);
8413 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (!match)
8414 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return null;
8415  
8416 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (match[1])
8417 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return this.$findClosingBracket(match[1], position);
8418 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { else
8419 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return this.$findOpeningBracket(match[2], position);
8420 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
8421  
8422 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.getBracketRange = function(pos) {
8423 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var line = this.getLine(pos.row);
8424 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var before = true, range;
8425  
8426 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var chr = line.charAt(pos.column-1);
8427 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var match = chr && chr.match(/([\(\[\{])|([\)\]\}])/);
8428 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (!match) {
8429 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { chr = line.charAt(pos.column);
8430 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { pos = {row: pos.row, column: pos.column + 1};
8431 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { match = chr && chr.match(/([\(\[\{])|([\)\]\}])/);
8432 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { before = false;
8433 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8434 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (!match)
8435 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return null;
8436  
8437 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (match[1]) {
8438 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var bracketPos = this.$findClosingBracket(match[1], pos);
8439 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (!bracketPos)
8440 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return null;
8441 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { range = Range.fromPoints(pos, bracketPos);
8442 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (!before) {
8443 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { range.end.column++;
8444 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { range.start.column--;
8445 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8446 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { range.cursor = range.end;
8447 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { } else {
8448 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var bracketPos = this.$findOpeningBracket(match[2], pos);
8449 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (!bracketPos)
8450 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return null;
8451 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { range = Range.fromPoints(bracketPos, pos);
8452 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (!before) {
8453 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { range.start.column++;
8454 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { range.end.column--;
8455 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8456 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { range.cursor = range.start;
8457 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8458  
8459 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return range;
8460 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
8461  
8462 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$brackets = {
8463 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { ")": "(",
8464 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { "(": ")",
8465 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { "]": "[",
8466 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { "[": "]",
8467 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { "{": "}",
8468 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { "}": "{"
8469 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
8470  
8471 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$findOpeningBracket = function(bracket, position, typeRe) {
8472 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var openBracket = this.$brackets[bracket];
8473 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var depth = 1;
8474  
8475 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var iterator = new TokenIterator(this, position.row, position.column);
8476 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var token = iterator.getCurrentToken();
8477 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (!token)
8478 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { token = iterator.stepForward();
8479 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (!token)
8480 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return;
8481  
8482 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (!typeRe){
8483 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { typeRe = new RegExp(
8484 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { "(\\.?" +
8485 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { token.type.replace(".", "\\.").replace("rparen", ".paren")
8486 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { .replace(/\b(?:end)\b/, "(?:start|begin|end)")
8487 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { + ")+"
8488 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { );
8489 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8490 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var valueIndex = position.column - iterator.getCurrentTokenColumn() - 2;
8491 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var value = token.value;
8492  
8493 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { while (true) {
8494  
8495 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { while (valueIndex >= 0) {
8496 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var chr = value.charAt(valueIndex);
8497 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (chr == openBracket) {
8498 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { depth -= 1;
8499 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (depth == 0) {
8500 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return {row: iterator.getCurrentTokenRow(),
8501 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { column: valueIndex + iterator.getCurrentTokenColumn()};
8502 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8503 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8504 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { else if (chr == bracket) {
8505 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { depth += 1;
8506 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8507 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { valueIndex -= 1;
8508 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8509 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { do {
8510 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { token = iterator.stepBackward();
8511 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { } while (token && !typeRe.test(token.type));
8512  
8513 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (token == null)
8514 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { break;
8515  
8516 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { value = token.value;
8517 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { valueIndex = value.length - 1;
8518 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8519  
8520 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return null;
8521 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
8522  
8523 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$findClosingBracket = function(bracket, position, typeRe) {
8524 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var closingBracket = this.$brackets[bracket];
8525 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var depth = 1;
8526  
8527 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var iterator = new TokenIterator(this, position.row, position.column);
8528 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var token = iterator.getCurrentToken();
8529 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (!token)
8530 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { token = iterator.stepForward();
8531 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (!token)
8532 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return;
8533  
8534 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (!typeRe){
8535 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { typeRe = new RegExp(
8536 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { "(\\.?" +
8537 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { token.type.replace(".", "\\.").replace("lparen", ".paren")
8538 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { .replace(/\b(?:start|begin)\b/, "(?:start|begin|end)")
8539 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { + ")+"
8540 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { );
8541 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8542 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var valueIndex = position.column - iterator.getCurrentTokenColumn();
8543  
8544 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { while (true) {
8545  
8546 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var value = token.value;
8547 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var valueLength = value.length;
8548 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { while (valueIndex < valueLength) {
8549 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var chr = value.charAt(valueIndex);
8550 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (chr == closingBracket) {
8551 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { depth -= 1;
8552 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (depth == 0) {
8553 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return {row: iterator.getCurrentTokenRow(),
8554 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { column: valueIndex + iterator.getCurrentTokenColumn()};
8555 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8556 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8557 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { else if (chr == bracket) {
8558 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { depth += 1;
8559 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8560 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { valueIndex += 1;
8561 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8562 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { do {
8563 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { token = iterator.stepForward();
8564 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { } while (token && !typeRe.test(token.type));
8565  
8566 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (token == null)
8567 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { break;
8568  
8569 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { valueIndex = 0;
8570 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8571  
8572 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return null;
8573 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
8574 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {}
8575 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {exports.BracketMatch = BracketMatch;
8576  
8577 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {});
8578  
8579 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {ace.define("ace/edit_session",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/config","ace/lib/event_emitter","ace/selection","ace/mode/text","ace/range","ace/document","ace/background_tokenizer","ace/search_highlight","ace/edit_session/folding","ace/edit_session/bracket_match"], function(require, exports, module) {
8580 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {"use strict";
8581  
8582 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {var oop = require("./lib/oop");
8583 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {var lang = require("./lib/lang");
8584 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {var config = require("./config");
8585 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {var EventEmitter = require("./lib/event_emitter").EventEmitter;
8586 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {var Selection = require("./selection").Selection;
8587 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {var TextMode = require("./mode/text").Mode;
8588 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {var Range = require("./range").Range;
8589 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {var Document = require("./document").Document;
8590 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {var BackgroundTokenizer = require("./background_tokenizer").BackgroundTokenizer;
8591 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {var SearchHighlight = require("./search_highlight").SearchHighlight;
8592  
8593 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {var EditSession = function(text, mode) {
8594 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$breakpoints = [];
8595 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$decorations = [];
8596 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$frontMarkers = {};
8597 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$backMarkers = {};
8598 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$markerId = 1;
8599 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$undoSelect = true;
8600  
8601 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$foldData = [];
8602 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.id = "session" + (++EditSession.$uid);
8603 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$foldData.toString = function() {
8604 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return this.join("\n");
8605 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
8606 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.on("changeFold", this.onChangeFold.bind(this));
8607 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$onChange = this.onChange.bind(this);
8608  
8609 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (typeof text != "object" || !text.getLine)
8610 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { text = new Document(text);
8611  
8612 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.setDocument(text);
8613 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.selection = new Selection(this);
8614  
8615 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { config.resetOptions(this);
8616 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.setMode(mode);
8617 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { config._signal("session", this);
8618 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {};
8619  
8620  
8621 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {(function() {
8622  
8623 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { oop.implement(this, EventEmitter);
8624 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.setDocument = function(doc) {
8625 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (this.doc)
8626 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.doc.removeListener("change", this.$onChange);
8627  
8628 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.doc = doc;
8629 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { doc.on("change", this.$onChange);
8630  
8631 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (this.bgTokenizer)
8632 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.bgTokenizer.setDocument(this.getDocument());
8633  
8634 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.resetCaches();
8635 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
8636 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.getDocument = function() {
8637 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return this.doc;
8638 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
8639 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$resetRowCache = function(docRow) {
8640 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (!docRow) {
8641 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$docRowCache = [];
8642 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$screenRowCache = [];
8643 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { return;
8644 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8645 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var l = this.$docRowCache.length;
8646 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var i = this.$getRowCacheIndex(this.$docRowCache, docRow) + 1;
8647 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { if (l > i) {
8648 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$docRowCache.splice(i, l);
8649 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$screenRowCache.splice(i, l);
8650 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { }
8651 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { };
8652  
8653 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { this.$getRowCacheIndex = function(cacheArray, val) {
8654 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var low = 0;
8655 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { var hi = cacheArray.length - 1;
8656  
8657 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) { while (low <= hi) {
8658 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) { var mid = (low + hi) >> 1;
8659 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) { var c = cacheArray[mid];
8660  
8661 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) { if (val > c)
8662 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) { low = mid + 1;
8663 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) { else if (val < c)
8664 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) hi = mid - 1;
8665 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) else
8666 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) return mid;
8667 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) }
8668  
8669 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) return low -1;
8670 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) };
8671  
8672 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) this.resetCaches = function() {
8673 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) this.$modified = true;
8674 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) this.$wrapData = [];
8675 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) this.$rowLengthCache = [];
8676 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) this.$resetRowCache(0);
8677 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) if (this.bgTokenizer)
8678 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) this.bgTokenizer.start(0);
8679 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) };
8680  
8681 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) this.onChangeFold = function(e) {
8682 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) var fold = e.data;
8683 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) this.$resetRowCache(fold.start.row);
8684 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) };
8685  
8686 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) this.onChange = function(delta) {
8687 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) this.$modified = true;
8688  
8689 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) this.$resetRowCache(delta.start.row);
8690  
8691 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) var removedFolds = this.$updateInternalDataOnChange(delta);
8692 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) if (!this.$fromUndo && this.$undoManager && !delta.ignore) {
8693 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) this.$deltasDoc.push(delta);
8694 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) if (removedFolds && removedFolds.length != 0) {
8695 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) this.$deltasFold.push({
8696 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) action: "removeFolds",
8697 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) folds: removedFolds
8698 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) });
8699 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) }
8700  
8701 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) this.$informUndoManager.schedule();
8702 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) }
8703  
8704 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) this.bgTokenizer && this.bgTokenizer.$updateOnChange(delta);
8705 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) this._signal("change", delta);
8706 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) };
8707 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) this.setValue = function(text) {
8708 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) this.doc.setValue(text);
8709 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) this.selection.moveTo(0, 0);
8710  
8711 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) this.$resetRowCache(0);
8712 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) this.$deltas = [];
8713 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) this.$deltasDoc = [];
8714 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) this.$deltasFold = [];
8715 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) this.setUndoManager(this.$undoManager);
8716 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) this.getUndoManager().reset();
8717 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) };
8718 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) this.getValue =
8719 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) this.toString = function() {
8720 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) return this.doc.getValue();
8721 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) };
8722 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) this.getSelection = function() {
8723 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) return this.selection;
8724 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) };
8725 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) this.getState = function(row) {
8726 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) return this.bgTokenizer.getState(row);
8727 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) };
8728 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) this.getTokens = function(row) {
8729 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) return this.bgTokenizer.getTokens(row);
8730 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) };
8731 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) this.getTokenAt = function(row, column) {
8732 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) var tokens = this.bgTokenizer.getTokens(row);
8733 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) var token, c = 0;
8734 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) if (column == null) {
8735 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) i = tokens.length - 1;
8736 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) c = this.getLine(row).length;
8737 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) } else {
8738 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c) for (var i = 0; i < tokens.length; i++) {
8739 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { c += tokens[i].value.length;
8740 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (c >= column)
8741 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { break;
8742 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { }
8743 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { }
8744 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { token = tokens[i];
8745 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (!token)
8746 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { return null;
8747 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { token.index = i;
8748 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { token.start = c - token.value.length;
8749 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { return token;
8750 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
8751 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.setUndoManager = function(undoManager) {
8752 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$undoManager = undoManager;
8753 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$deltas = [];
8754 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$deltasDoc = [];
8755 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$deltasFold = [];
8756  
8757 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (this.$informUndoManager)
8758 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$informUndoManager.cancel();
8759  
8760 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (undoManager) {
8761 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { var self = this;
8762  
8763 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$syncInformUndoManager = function() {
8764 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { self.$informUndoManager.cancel();
8765  
8766 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (self.$deltasFold.length) {
8767 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { self.$deltas.push({
8768 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { group: "fold",
8769 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { deltas: self.$deltasFold
8770 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { });
8771 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { self.$deltasFold = [];
8772 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { }
8773  
8774 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (self.$deltasDoc.length) {
8775 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { self.$deltas.push({
8776 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { group: "doc",
8777 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { deltas: self.$deltasDoc
8778 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { });
8779 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { self.$deltasDoc = [];
8780 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { }
8781  
8782 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (self.$deltas.length > 0) {
8783 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { undoManager.execute({
8784 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { action: "aceupdate",
8785 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { args: [self.$deltas, self],
8786 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { merge: self.mergeUndoDeltas
8787 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { });
8788 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { }
8789 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { self.mergeUndoDeltas = false;
8790 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { self.$deltas = [];
8791 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
8792 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$informUndoManager = lang.delayedCall(this.$syncInformUndoManager);
8793 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { }
8794 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
8795 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.markUndoGroup = function() {
8796 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (this.$syncInformUndoManager)
8797 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$syncInformUndoManager();
8798 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
8799  
8800 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$defaultUndoManager = {
8801 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { undo: function() {},
8802 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { redo: function() {},
8803 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { reset: function() {}
8804 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
8805 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.getUndoManager = function() {
8806 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { return this.$undoManager || this.$defaultUndoManager;
8807 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
8808 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.getTabString = function() {
8809 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (this.getUseSoftTabs()) {
8810 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { return lang.stringRepeat(" ", this.getTabSize());
8811 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { } else {
8812 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { return "\t";
8813 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { }
8814 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
8815 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.setUseSoftTabs = function(val) {
8816 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.setOption("useSoftTabs", val);
8817 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
8818 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.getUseSoftTabs = function() {
8819 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { return this.$useSoftTabs && !this.$mode.$indentWithTabs;
8820 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
8821 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.setTabSize = function(tabSize) {
8822 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.setOption("tabSize", tabSize);
8823 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
8824 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.getTabSize = function() {
8825 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { return this.$tabSize;
8826 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
8827 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.isTabStop = function(position) {
8828 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { return this.$useSoftTabs && (position.column % this.$tabSize === 0);
8829 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
8830  
8831 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$overwrite = false;
8832 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.setOverwrite = function(overwrite) {
8833 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.setOption("overwrite", overwrite);
8834 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
8835 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.getOverwrite = function() {
8836 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { return this.$overwrite;
8837 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
8838 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.toggleOverwrite = function() {
8839 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.setOverwrite(!this.$overwrite);
8840 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
8841 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.addGutterDecoration = function(row, className) {
8842 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (!this.$decorations[row])
8843 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$decorations[row] = "";
8844 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$decorations[row] += " " + className;
8845 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this._signal("changeBreakpoint", {});
8846 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
8847 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.removeGutterDecoration = function(row, className) {
8848 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$decorations[row] = (this.$decorations[row] || "").replace(" " + className, "");
8849 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this._signal("changeBreakpoint", {});
8850 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
8851 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.getBreakpoints = function() {
8852 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { return this.$breakpoints;
8853 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
8854 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.setBreakpoints = function(rows) {
8855 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$breakpoints = [];
8856 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { for (var i=0; i
8857 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8858 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8859 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8860 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8861 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8862 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8863 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8864 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8865 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8866 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8867 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8868 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8869 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8870 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8871 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8872 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8873 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8874 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8875 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8876 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8877 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8878 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8879 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8880  
8881 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8882 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8883 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8884 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8885 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8886 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8887 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8888 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8889  
8890 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8891 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8892 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8893 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8894 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8895 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8896 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8897  
8898 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8899 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8900 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8901 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8902 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8903 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8904 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8905 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8906  
8907 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8908 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8909 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8910 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8911 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8912 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8913 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8914  
8915 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8916 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8917 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8918 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8919 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8920 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8921  
8922 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8923 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8924 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8925 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8926 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8927 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8928 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8929 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8930 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8931  
8932 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8933 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8934 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8935 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8936 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8937 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8938 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8939 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8940 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8941 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8942 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8943 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8944 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8945 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8946  
8947 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8948 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8949 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8950 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8951 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8952 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8953 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8954 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8955 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8956 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8957 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8958 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8959 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8960 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8961 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
8962 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {^.*?(\r?\n)/m);
8963 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (match) {
8964 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$autoNewLine = match[1];
8965 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { } else {
8966 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$autoNewLine = "\n";
8967 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { }
8968 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
8969 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.getWordRange = function(row, column) {
8970 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { var line = this.getLine(row);
8971  
8972 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { var inToken = false;
8973 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (column > 0)
8974 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { inToken = !!line.charAt(column - 1).match(this.tokenRe);
8975  
8976 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (!inToken)
8977 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { inToken = !!line.charAt(column).match(this.tokenRe);
8978  
8979 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (inToken)
8980 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { var re = this.tokenRe;
8981 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { else if (/^\s+$/.test(line.slice(column-1, column+1)))
8982 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { var re = /\s/;
8983 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { else
8984 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { var re = this.nonTokenRe;
8985  
8986 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { var start = column;
8987 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (start > 0) {
8988 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { do {
8989 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { start--;
8990 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { }
8991 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { while (start >= 0 && line.charAt(start).match(re));
8992 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { start++;
8993 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { }
8994  
8995 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { var end = column;
8996 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { while (end < line.length && line.charAt(end).match(re)) {
8997 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< line.length && line.charAt(end).match(re)) { end++;
8998 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< line.length && line.charAt(end).match(re)) { }
8999  
9000 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< line.length && line.charAt(end).match(re)) { return new Range(row, start, row, end);
9001 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< line.length && line.charAt(end).match(re)) { };
9002 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< line.length && line.charAt(end).match(re)) { this.getAWordRange = function(row, column) {
9003 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< line.length && line.charAt(end).match(re)) { var wordRange = this.getWordRange(row, column);
9004 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< line.length && line.charAt(end).match(re)) { var line = this.getLine(wordRange.end.row);
9005  
9006 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< line.length && line.charAt(end).match(re)) { while (line.charAt(wordRange.end.column).match(/[ \t]/)) {
9007 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { wordRange.end.column += 1;
9008 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { }
9009 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { return wordRange;
9010 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
9011 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.setNewLineMode = function(newLineMode) {
9012 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.doc.setNewLineMode(newLineMode);
9013 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
9014 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.getNewLineMode = function() {
9015 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { return this.doc.getNewLineMode();
9016 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
9017 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.setUseWorker = function(useWorker) { this.setOption("useWorker", useWorker); };
9018 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.getUseWorker = function() { return this.$useWorker; };
9019 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.onReloadTokenizer = function(e) {
9020 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { var rows = e.data;
9021 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.bgTokenizer.start(rows.first);
9022 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this._signal("tokenizerUpdate", e);
9023 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
9024  
9025 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$modes = {};
9026 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$mode = null;
9027 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$modeId = null;
9028 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.setMode = function(mode, cb) {
9029 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (mode && typeof mode === "object") {
9030 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (mode.getTokenizer)
9031 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { return this.$onChangeMode(mode);
9032 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { var options = mode;
9033 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { var path = options.path;
9034 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { } else {
9035 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { path = mode || "ace/mode/text";
9036 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { }
9037 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (!this.$modes["ace/mode/text"])
9038 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$modes["ace/mode/text"] = new TextMode();
9039  
9040 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (this.$modes[path] && !options) {
9041 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$onChangeMode(this.$modes[path]);
9042 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { cb && cb();
9043 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { return;
9044 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { }
9045 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$modeId = path;
9046 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { config.loadModule(["mode", path], function(m) {
9047 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (this.$modeId !== path)
9048 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { return cb && cb();
9049 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (this.$modes[path] && !options) {
9050 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$onChangeMode(this.$modes[path]);
9051 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { } else if (m && m.Mode) {
9052 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { m = new m.Mode(options);
9053 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (!options) {
9054 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$modes[path] = m;
9055 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { m.$id = path;
9056 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { }
9057 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$onChangeMode(m);
9058 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { }
9059 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { cb && cb();
9060 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { }.bind(this));
9061 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (!this.$mode)
9062 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$onChangeMode(this.$modes["ace/mode/text"], true);
9063 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
9064  
9065 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$onChangeMode = function(mode, $isPlaceholder) {
9066 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (!$isPlaceholder)
9067 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$modeId = mode.$id;
9068 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (this.$mode === mode)
9069 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { return;
9070  
9071 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$mode = mode;
9072  
9073 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$stopWorker();
9074  
9075 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (this.$useWorker)
9076 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$startWorker();
9077  
9078 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { var tokenizer = mode.getTokenizer();
9079  
9080 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if(tokenizer.addEventListener !== undefined) {
9081 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { var onReloadTokenizer = this.onReloadTokenizer.bind(this);
9082 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { tokenizer.addEventListener("update", onReloadTokenizer);
9083 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { }
9084  
9085 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (!this.bgTokenizer) {
9086 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.bgTokenizer = new BackgroundTokenizer(tokenizer);
9087 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { var _self = this;
9088 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.bgTokenizer.addEventListener("update", function(e) {
9089 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { _self._signal("tokenizerUpdate", e);
9090 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { });
9091 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { } else {
9092 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.bgTokenizer.setTokenizer(tokenizer);
9093 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { }
9094  
9095 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.bgTokenizer.setDocument(this.getDocument());
9096  
9097 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.tokenRe = mode.tokenRe;
9098 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.nonTokenRe = mode.nonTokenRe;
9099  
9100  
9101 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (!$isPlaceholder) {
9102 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (mode.attachToSession)
9103 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { mode.attachToSession(this);
9104 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$options.wrapMethod.set.call(this, this.$wrapMethod);
9105 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$setFolding(mode.foldingRules);
9106 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.bgTokenizer.start(0);
9107 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this._emit("changeMode");
9108 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { }
9109 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
9110  
9111 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$stopWorker = function() {
9112 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (this.$worker) {
9113 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$worker.terminate();
9114 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$worker = null;
9115 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { }
9116 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
9117  
9118 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$startWorker = function() {
9119 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { try {
9120 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$worker = this.$mode.createWorker(this);
9121 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { } catch (e) {
9122 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { config.warn("Could not load worker", e);
9123 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$worker = null;
9124 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { }
9125 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
9126 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.getMode = function() {
9127 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { return this.$mode;
9128 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
9129  
9130 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$scrollTop = 0;
9131 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.setScrollTop = function(scrollTop) {
9132 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (this.$scrollTop === scrollTop || isNaN(scrollTop))
9133 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { return;
9134  
9135 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$scrollTop = scrollTop;
9136 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this._signal("changeScrollTop", scrollTop);
9137 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
9138 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.getScrollTop = function() {
9139 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { return this.$scrollTop;
9140 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
9141  
9142 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$scrollLeft = 0;
9143 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.setScrollLeft = function(scrollLeft) {
9144 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (this.$scrollLeft === scrollLeft || isNaN(scrollLeft))
9145 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { return;
9146  
9147 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$scrollLeft = scrollLeft;
9148 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this._signal("changeScrollLeft", scrollLeft);
9149 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
9150 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.getScrollLeft = function() {
9151 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { return this.$scrollLeft;
9152 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
9153 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.getScreenWidth = function() {
9154 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$computeWidth();
9155 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (this.lineWidgets)
9156 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { return Math.max(this.getLineWidgetMaxWidth(), this.screenWidth);
9157 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { return this.screenWidth;
9158 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
9159  
9160 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.getLineWidgetMaxWidth = function() {
9161 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (this.lineWidgetsWidth != null) return this.lineWidgetsWidth;
9162 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { var width = 0;
9163 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.lineWidgets.forEach(function(w) {
9164 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (w && w.screenWidth > width)
9165 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { width = w.screenWidth;
9166 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { });
9167 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { return this.lineWidgetWidth = width;
9168 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
9169  
9170 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$computeWidth = function(force) {
9171 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (this.$modified || force) {
9172 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.$modified = false;
9173  
9174 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (this.$useWrapMode)
9175 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { return this.screenWidth = this.$wrapLimit;
9176  
9177 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { var lines = this.doc.getAllLines();
9178 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { var cache = this.$rowLengthCache;
9179 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { var longestScreenLine = 0;
9180 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { var foldIndex = 0;
9181 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { var foldLine = this.$foldData[foldIndex];
9182 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { var foldStart = foldLine ? foldLine.start.row : Infinity;
9183 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { var len = lines.length;
9184  
9185 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { for (var i = 0; i < len; i++) {
9186 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { if (i > foldStart) {
9187 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { i = foldLine.end.row + 1;
9188 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { if (i >= len)
9189 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { break;
9190 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { foldLine = this.$foldData[foldIndex++];
9191 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { foldStart = foldLine ? foldLine.start.row : Infinity;
9192 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { }
9193  
9194 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { if (cache[i] == null)
9195 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { cache[i] = this.$getStringScreenWidth(lines[i])[0];
9196  
9197 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { if (cache[i] > longestScreenLine)
9198 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { longestScreenLine = cache[i];
9199 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { }
9200 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { this.screenWidth = longestScreenLine;
9201 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { }
9202 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { };
9203 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { this.getLine = function(row) {
9204 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { return this.doc.getLine(row);
9205 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { };
9206 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { this.getLines = function(firstRow, lastRow) {
9207 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { return this.doc.getLines(firstRow, lastRow);
9208 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { };
9209 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { this.getLength = function() {
9210 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { return this.doc.getLength();
9211 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { };
9212 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { this.getTextRange = function(range) {
9213 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { return this.doc.getTextRange(range || this.selection.getRange());
9214 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { };
9215 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { this.insert = function(position, text) {
9216 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { return this.doc.insert(position, text);
9217 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { };
9218 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { this.remove = function(range) {
9219 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { return this.doc.remove(range);
9220 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { };
9221 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { this.removeFullLines = function(firstRow, lastRow){
9222 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { return this.doc.removeFullLines(firstRow, lastRow);
9223 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { };
9224 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { this.undoChanges = function(deltas, dontSelect) {
9225 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { if (!deltas.length)
9226 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { return;
9227  
9228 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { this.$fromUndo = true;
9229 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { var lastUndoRange = null;
9230 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { for (var i = deltas.length - 1; i != -1; i--) {
9231 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { var delta = deltas[i];
9232 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { if (delta.group == "doc") {
9233 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { this.doc.revertDeltas(delta.deltas);
9234 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { lastUndoRange =
9235 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { this.$getUndoSelection(delta.deltas, true, lastUndoRange);
9236 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { } else {
9237 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { delta.deltas.forEach(function(foldDelta) {
9238 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { this.addFolds(foldDelta.folds);
9239 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { }, this);
9240 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { }
9241 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { }
9242 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { this.$fromUndo = false;
9243 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { lastUndoRange &&
9244 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { this.$undoSelect &&
9245 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { !dontSelect &&
9246 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { this.selection.setSelectionRange(lastUndoRange);
9247 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { return lastUndoRange;
9248 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { };
9249 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { this.redoChanges = function(deltas, dontSelect) {
9250 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { if (!deltas.length)
9251 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { return;
9252  
9253 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { this.$fromUndo = true;
9254 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { var lastUndoRange = null;
9255 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) { for (var i = 0; i < deltas.length; i++) {
9256 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) { var delta = deltas[i];
9257 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) { if (delta.group == "doc") {
9258 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) { this.doc.applyDeltas(delta.deltas);
9259 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) { lastUndoRange =
9260 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) { this.$getUndoSelection(delta.deltas, false, lastUndoRange);
9261 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) { }
9262 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) { }
9263 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) { this.$fromUndo = false;
9264 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) { lastUndoRange &&
9265 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) { this.$undoSelect &&
9266 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) { !dontSelect &&
9267 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) { this.selection.setSelectionRange(lastUndoRange);
9268 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) { return lastUndoRange;
9269 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) { };
9270 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) { this.setUndoSelect = function(enable) {
9271 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) { this.$undoSelect = enable;
9272 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) { };
9273  
9274 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) { this.$getUndoSelection = function(deltas, isUndo, lastUndoRange) {
9275 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) { function isInsert(delta) {
9276 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) { return isUndo ? delta.action !== "insert" : delta.action === "insert";
9277 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) { }
9278  
9279 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) { var delta = deltas[0];
9280 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) { var range, point;
9281 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) { var lastDeltaIsInsert = false;
9282 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) { if (isInsert(delta)) {
9283 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) { range = Range.fromPoints(delta.start, delta.end);
9284 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) { lastDeltaIsInsert = true;
9285 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) { } else {
9286 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) { range = Range.fromPoints(delta.start, delta.start);
9287 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) { lastDeltaIsInsert = false;
9288 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) { }
9289  
9290 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) { for (var i = 1; i < deltas.length; i++) {
9291 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { delta = deltas[i];
9292 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { if (isInsert(delta)) {
9293 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { point = delta.start;
9294 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { if (range.compare(point.row, point.column) == -1) {
9295 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { range.setStart(point);
9296 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { }
9297 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { point = delta.end;
9298 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { if (range.compare(point.row, point.column) == 1) {
9299 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { range.setEnd(point);
9300 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { }
9301 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { lastDeltaIsInsert = true;
9302 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { } else {
9303 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { point = delta.start;
9304 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { if (range.compare(point.row, point.column) == -1) {
9305 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { range = Range.fromPoints(delta.start, delta.start);
9306 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { }
9307 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { lastDeltaIsInsert = false;
9308 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { }
9309 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { }
9310 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { if (lastUndoRange != null) {
9311 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { if (Range.comparePoints(lastUndoRange.start, range.start) === 0) {
9312 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { lastUndoRange.start.column += range.end.column - range.start.column;
9313 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { lastUndoRange.end.column += range.end.column - range.start.column;
9314 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { }
9315  
9316 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { var cmp = lastUndoRange.compareRange(range);
9317 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { if (cmp == 1) {
9318 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { range.setStart(lastUndoRange.start);
9319 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { } else if (cmp == -1) {
9320 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { range.setEnd(lastUndoRange.end);
9321 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { }
9322 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { }
9323  
9324 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { return range;
9325 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { };
9326 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { this.replace = function(range, text) {
9327 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { return this.doc.replace(range, text);
9328 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { };
9329 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { this.moveText = function(fromRange, toPosition, copy) {
9330 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { var text = this.getTextRange(fromRange);
9331 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { var folds = this.getFoldsInRange(fromRange);
9332  
9333 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { var toRange = Range.fromPoints(toPosition, toPosition);
9334 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { if (!copy) {
9335 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { this.remove(fromRange);
9336 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { var rowDiff = fromRange.start.row - fromRange.end.row;
9337 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { var collDiff = rowDiff ? -fromRange.end.column : fromRange.start.column - fromRange.end.column;
9338 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { if (collDiff) {
9339 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { if (toRange.start.row == fromRange.end.row && toRange.start.column > fromRange.end.column)
9340 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { toRange.start.column += collDiff;
9341 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { if (toRange.end.row == fromRange.end.row && toRange.end.column > fromRange.end.column)
9342 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { toRange.end.column += collDiff;
9343 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { }
9344 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { if (rowDiff && toRange.start.row >= fromRange.end.row) {
9345 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { toRange.start.row += rowDiff;
9346 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { toRange.end.row += rowDiff;
9347 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { }
9348 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { }
9349  
9350 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { toRange.end = this.insert(toRange.start, text);
9351 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { if (folds.length) {
9352 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { var oldStart = fromRange.start;
9353 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { var newStart = toRange.start;
9354 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { var rowDiff = newStart.row - oldStart.row;
9355 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { var collDiff = newStart.column - oldStart.column;
9356 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { this.addFolds(folds.map(function(x) {
9357 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { x = x.clone();
9358 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { if (x.start.row == oldStart.row)
9359 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { x.start.column += collDiff;
9360 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { if (x.end.row == oldStart.row)
9361 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { x.end.column += collDiff;
9362 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { x.start.row += rowDiff;
9363 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { x.end.row += rowDiff;
9364 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { return x;
9365 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { }));
9366 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { }
9367  
9368 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { return toRange;
9369 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { };
9370 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { this.indentRows = function(startRow, endRow, indentString) {
9371 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< len; i++) {< deltas.length; i++) {< deltas.length; i++) { indentString = indentString.replace(/\t/g, this.getTabString());
9372 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { for (var row=startRow; row<=endRow; row++)
9373 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++) this.doc.insertInLine({row: row, column: 0}, indentString);
9374 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++) };
9375 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++) this.outdentRows = function (range) {
9376 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++) var rowRange = range.collapseRows();
9377 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++) var deleteRange = new Range(0, 0, 0, 0);
9378 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++) var size = this.getTabSize();
9379  
9380 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++) for (var i = rowRange.start.row; i <= rowRange.end.row; ++i) {
9381 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) { var line = this.getLine(i);
9382  
9383 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) { deleteRange.start.row = i;
9384 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) { deleteRange.end.row = i;
9385 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) { for (var j = 0; j < size; ++j)
9386 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j) if (line.charAt(j) != ' ')
9387 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j) break;
9388 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j) if (j < size && line.charAt(j) == '\t') {
9389 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') { deleteRange.start.column = j;
9390 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') { deleteRange.end.column = j + 1;
9391 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') { } else {
9392 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') { deleteRange.start.column = 0;
9393 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') { deleteRange.end.column = j;
9394 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') { }
9395 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') { this.remove(deleteRange);
9396 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') { }
9397 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') { };
9398  
9399 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') { this.$moveLines = function(firstRow, lastRow, dir) {
9400 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') { firstRow = this.getRowFoldStart(firstRow);
9401 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') { lastRow = this.getRowFoldEnd(lastRow);
9402 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') { if (dir < 0) {
9403 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) { var row = this.getRowFoldStart(firstRow + dir);
9404 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) { if (row < 0) return 0;
9405 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; var diff = row-firstRow;
9406 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; } else if (dir > 0) {
9407 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; var row = this.getRowFoldEnd(lastRow + dir);
9408 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; if (row > this.doc.getLength()-1) return 0;
9409 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; var diff = row-lastRow;
9410 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; } else {
9411 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; firstRow = this.$clipRowToDocument(firstRow);
9412 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; lastRow = this.$clipRowToDocument(lastRow);
9413 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; var diff = lastRow - firstRow + 1;
9414 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; }
9415  
9416 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; var range = new Range(firstRow, 0, lastRow, Number.MAX_VALUE);
9417 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; var folds = this.getFoldsInRange(range).map(function(x){
9418 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; x = x.clone();
9419 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; x.start.row += diff;
9420 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; x.end.row += diff;
9421 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; return x;
9422 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; });
9423  
9424 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; var lines = dir == 0
9425 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; ? this.doc.getLines(firstRow, lastRow)
9426 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; : this.doc.removeFullLines(firstRow, lastRow);
9427 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; this.doc.insertFullLines(firstRow+diff, lines);
9428 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; folds.length && this.addFolds(folds);
9429 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; return diff;
9430 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; };
9431 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; this.moveLinesUp = function(firstRow, lastRow) {
9432 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; return this.$moveLines(firstRow, lastRow, -1);
9433 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; };
9434 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; this.moveLinesDown = function(firstRow, lastRow) {
9435 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; return this.$moveLines(firstRow, lastRow, 1);
9436 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; };
9437 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; this.duplicateLines = function(firstRow, lastRow) {
9438 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; return this.$moveLines(firstRow, lastRow, 0);
9439 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; };
9440  
9441  
9442 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; this.$clipRowToDocument = function(row) {
9443 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; return Math.max(0, Math.min(row, this.doc.getLength()-1));
9444 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; };
9445  
9446 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; this.$clipColumnToRow = function(row, column) {
9447 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0; if (column < 0)
9448 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0) return 0;
9449 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0) return Math.min(this.doc.getLine(row).length, column);
9450 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0) };
9451  
9452  
9453 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0) this.$clipPositionToDocument = function(row, column) {
9454 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0) column = Math.max(0, column);
9455  
9456 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0) if (row < 0) {
9457 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) { row = 0;
9458 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) { column = 0;
9459 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) { } else {
9460 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) { var len = this.doc.getLength();
9461 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) { if (row >= len) {
9462 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) { row = len - 1;
9463 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) { column = this.doc.getLine(len-1).length;
9464 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) { } else {
9465 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) { column = Math.min(this.doc.getLine(row).length, column);
9466 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) { }
9467 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) { }
9468  
9469 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) { return {
9470 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) { row: row,
9471 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) { column: column
9472 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) { };
9473 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) { };
9474  
9475 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) { this.$clipRangeToDocument = function(range) {
9476 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) { if (range.start.row < 0) {
9477 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { range.start.row = 0;
9478 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { range.start.column = 0;
9479 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { } else {
9480 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { range.start.column = this.$clipColumnToRow(
9481 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { range.start.row,
9482 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { range.start.column
9483 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { );
9484 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { }
9485  
9486 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { var len = this.doc.getLength() - 1;
9487 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { if (range.end.row > len) {
9488 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { range.end.row = len;
9489 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { range.end.column = this.doc.getLine(len).length;
9490 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { } else {
9491 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { range.end.column = this.$clipColumnToRow(
9492 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { range.end.row,
9493 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { range.end.column
9494 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { );
9495 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { }
9496 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { return range;
9497 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { };
9498 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { this.$wrapLimit = 80;
9499 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { this.$useWrapMode = false;
9500 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { this.$wrapLimitRange = {
9501 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { min : null,
9502 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { max : null
9503 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { };
9504 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { this.setUseWrapMode = function(useWrapMode) {
9505 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { if (useWrapMode != this.$useWrapMode) {
9506 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { this.$useWrapMode = useWrapMode;
9507 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { this.$modified = true;
9508 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { this.$resetRowCache(0);
9509 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { if (useWrapMode) {
9510 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { var len = this.getLength();
9511 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { this.$wrapData = Array(len);
9512 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { this.$updateWrapData(0, len - 1);
9513 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { }
9514  
9515 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { this._signal("changeWrapMode");
9516 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { }
9517 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { };
9518 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { this.getUseWrapMode = function() {
9519 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { return this.$useWrapMode;
9520 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { };
9521 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { this.setWrapLimitRange = function(min, max) {
9522 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { if (this.$wrapLimitRange.min !== min || this.$wrapLimitRange.max !== max) {
9523 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { this.$wrapLimitRange = { min: min, max: max };
9524 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { this.$modified = true;
9525 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { if (this.$useWrapMode)
9526 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { this._signal("changeWrapMode");
9527 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { }
9528 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { };
9529 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { this.adjustWrapLimit = function(desiredLimit, $printMargin) {
9530 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { var limits = this.$wrapLimitRange;
9531 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) { if (limits.max < 0)
9532 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) limits = {min: $printMargin, max: $printMargin};
9533 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) var wrapLimit = this.$constrainWrapLimit(desiredLimit, limits.min, limits.max);
9534 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) if (wrapLimit != this.$wrapLimit && wrapLimit > 1) {
9535 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) this.$wrapLimit = wrapLimit;
9536 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) this.$modified = true;
9537 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) if (this.$useWrapMode) {
9538 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) this.$updateWrapData(0, this.getLength() - 1);
9539 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) this.$resetRowCache(0);
9540 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) this._signal("changeWrapLimit");
9541 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) }
9542 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) return true;
9543 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) }
9544 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) return false;
9545 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) };
9546  
9547 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) this.$constrainWrapLimit = function(wrapLimit, min, max) {
9548 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) if (min)
9549 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) wrapLimit = Math.max(min, wrapLimit);
9550  
9551 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) if (max)
9552 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) wrapLimit = Math.min(max, wrapLimit);
9553  
9554 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) return wrapLimit;
9555 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) };
9556 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) this.getWrapLimit = function() {
9557 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) return this.$wrapLimit;
9558 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) };
9559 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) this.setWrapLimit = function (limit) {
9560 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) this.setWrapLimitRange(limit, limit);
9561 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) };
9562 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) this.getWrapLimitRange = function() {
9563 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) return {
9564 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) min : this.$wrapLimitRange.min,
9565 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) max : this.$wrapLimitRange.max
9566 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) };
9567 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) };
9568  
9569 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) this.$updateInternalDataOnChange = function(delta) {
9570 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) var useWrapMode = this.$useWrapMode;
9571 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) var action = delta.action;
9572 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) var start = delta.start;
9573 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) var end = delta.end;
9574 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) var firstRow = start.row;
9575 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) var lastRow = end.row;
9576 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) var len = lastRow - firstRow;
9577 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) var removedFolds = null;
9578  
9579 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) this.$updating = true;
9580 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) if (len != 0) {
9581 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) if (action === "remove") {
9582 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) this[useWrapMode ? "$wrapData" : "$rowLengthCache"].splice(firstRow, len);
9583  
9584 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) var foldLines = this.$foldData;
9585 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) removedFolds = this.getFoldsInRange(delta);
9586 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) this.removeFolds(removedFolds);
9587  
9588 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) var foldLine = this.getFoldLine(end.row);
9589 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) var idx = 0;
9590 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) if (foldLine) {
9591 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) foldLine.addRemoveChars(end.row, end.column, start.column - end.column);
9592 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) foldLine.shiftRow(-len);
9593  
9594 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) var foldLineBefore = this.getFoldLine(firstRow);
9595 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) if (foldLineBefore && foldLineBefore !== foldLine) {
9596 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) foldLineBefore.merge(foldLine);
9597 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) foldLine = foldLineBefore;
9598 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) }
9599 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) idx = foldLines.indexOf(foldLine) + 1;
9600 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) }
9601  
9602 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0) for (idx; idx < foldLines.length; idx++) {
9603 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) { var foldLine = foldLines[idx];
9604 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) { if (foldLine.start.row >= end.row) {
9605 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) { foldLine.shiftRow(-len);
9606 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) { }
9607 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) { }
9608  
9609 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) { lastRow = firstRow;
9610 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) { } else {
9611 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) { var args = Array(len);
9612 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) { args.unshift(firstRow, 0);
9613 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) { var arr = useWrapMode ? this.$wrapData : this.$rowLengthCache
9614 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) { arr.splice.apply(arr, args);
9615 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) { var foldLines = this.$foldData;
9616 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) { var foldLine = this.getFoldLine(firstRow);
9617 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) { var idx = 0;
9618 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) { if (foldLine) {
9619 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) { var cmp = foldLine.range.compareInside(start.row, start.column);
9620 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) { if (cmp == 0) {
9621 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) { foldLine = foldLine.split(start.row, start.column);
9622 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) { if (foldLine) {
9623 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) { foldLine.shiftRow(len);
9624 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) { foldLine.addRemoveChars(lastRow, 0, end.column - start.column);
9625 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) { }
9626 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) { } else
9627 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) { if (cmp == -1) {
9628 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) { foldLine.addRemoveChars(firstRow, 0, end.column - start.column);
9629 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) { foldLine.shiftRow(len);
9630 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) { }
9631 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) { idx = foldLines.indexOf(foldLine) + 1;
9632 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) { }
9633  
9634 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) { for (idx; idx < foldLines.length; idx++) {
9635 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { var foldLine = foldLines[idx];
9636 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { if (foldLine.start.row >= firstRow) {
9637 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { foldLine.shiftRow(len);
9638 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { }
9639 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { }
9640 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { }
9641 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { } else {
9642 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { len = Math.abs(delta.start.column - delta.end.column);
9643 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { if (action === "remove") {
9644 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { removedFolds = this.getFoldsInRange(delta);
9645 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { this.removeFolds(removedFolds);
9646  
9647 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { len = -len;
9648 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { }
9649 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { var foldLine = this.getFoldLine(firstRow);
9650 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { if (foldLine) {
9651 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { foldLine.addRemoveChars(firstRow, start.column, len);
9652 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { }
9653 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { }
9654  
9655 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { if (useWrapMode && this.$wrapData.length != this.doc.getLength()) {
9656 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { console.error("doc.getLength() and $wrapData.length have to be the same!");
9657 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { }
9658 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { this.$updating = false;
9659  
9660 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { if (useWrapMode)
9661 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { this.$updateWrapData(firstRow, lastRow);
9662 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { else
9663 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { this.$updateRowLengthCache(firstRow, lastRow);
9664  
9665 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { return removedFolds;
9666 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { };
9667  
9668 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { this.$updateRowLengthCache = function(firstRow, lastRow, b) {
9669 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { this.$rowLengthCache[firstRow] = null;
9670 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { this.$rowLengthCache[lastRow] = null;
9671 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { };
9672  
9673 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { this.$updateWrapData = function(firstRow, lastRow) {
9674 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { var lines = this.doc.getAllLines();
9675 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { var tabSize = this.getTabSize();
9676 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { var wrapData = this.$wrapData;
9677 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { var wrapLimit = this.$wrapLimit;
9678 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { var tokens;
9679 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { var foldLine;
9680  
9681 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { var row = firstRow;
9682 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { lastRow = Math.min(lastRow, lines.length - 1);
9683 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) { while (row <= lastRow) {
9684 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) { foldLine = this.getFoldLine(row, foldLine);
9685 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) { if (!foldLine) {
9686 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) { tokens = this.$getDisplayTokens(lines[row]);
9687 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) { wrapData[row] = this.$computeWrapSplits(tokens, wrapLimit, tabSize);
9688 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) { row ++;
9689 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) { } else {
9690 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) { tokens = [];
9691 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) { foldLine.walk(function(placeholder, row, column, lastColumn) {
9692 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) { var walkTokens;
9693 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) { if (placeholder != null) {
9694 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) { walkTokens = this.$getDisplayTokens(
9695 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) { placeholder, tokens.length);
9696 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) { walkTokens[0] = PLACEHOLDER_START;
9697 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) { for (var i = 1; i < walkTokens.length; i++) {
9698 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) {< walkTokens.length; i++) { walkTokens[i] = PLACEHOLDER_BODY;
9699 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) {< walkTokens.length; i++) { }
9700 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) {< walkTokens.length; i++) { } else {
9701 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) {< walkTokens.length; i++) { walkTokens = this.$getDisplayTokens(
9702 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) {< walkTokens.length; i++) { lines[row].substring(lastColumn, column),
9703 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) {< walkTokens.length; i++) { tokens.length);
9704 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) {< walkTokens.length; i++) { }
9705 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) {< walkTokens.length; i++) { tokens = tokens.concat(walkTokens);
9706 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) {< walkTokens.length; i++) { }.bind(this),
9707 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) {< walkTokens.length; i++) { foldLine.end.row,
9708 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) {< walkTokens.length; i++) { lines[foldLine.end.row].length + 1
9709 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) {< walkTokens.length; i++) { );
9710  
9711 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) {< walkTokens.length; i++) { wrapData[foldLine.start.row] = this.$computeWrapSplits(tokens, wrapLimit, tabSize);
9712 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) {< walkTokens.length; i++) { row = foldLine.end.row + 1;
9713 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) {< walkTokens.length; i++) { }
9714 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) {< walkTokens.length; i++) { }
9715 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) {< walkTokens.length; i++) { };
9716 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) {< walkTokens.length; i++) { var CHAR = 1,
9717 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) {< walkTokens.length; i++) { CHAR_EXT = 2,
9718 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) {< walkTokens.length; i++) { PLACEHOLDER_START = 3,
9719 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) {< walkTokens.length; i++) { PLACEHOLDER_BODY = 4,
9720 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) {< walkTokens.length; i++) { PUNCTUATION = 9,
9721 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) {< walkTokens.length; i++) { SPACE = 10,
9722 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) {< walkTokens.length; i++) { TAB = 11,
9723 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) {< walkTokens.length; i++) { TAB_SPACE = 12;
9724  
9725  
9726 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) {< walkTokens.length; i++) { this.$computeWrapSplits = function(tokens, wrapLimit, tabSize) {
9727 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) {< walkTokens.length; i++) { if (tokens.length == 0) {
9728 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) {< walkTokens.length; i++) { return [];
9729 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) {< walkTokens.length; i++) { }
9730  
9731 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) {< walkTokens.length; i++) { var splits = [];
9732 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) {< walkTokens.length; i++) { var displayLength = tokens.length;
9733 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) {< walkTokens.length; i++) { var lastSplit = 0, lastDocSplit = 0;
9734  
9735 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) {< walkTokens.length; i++) { var isCode = this.$wrapAsCode;
9736  
9737 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) {< walkTokens.length; i++) { var indentedSoftWrap = this.$indentedSoftWrap;
9738 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) {< walkTokens.length; i++) { var maxIndent = wrapLimit <= Math.max(2 * tabSize, 8)
9739 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {<=endRow; row++)<= rowRange.end.row; ++i) {< size; ++j)< size && line.charAt(j) == '\t') {< 0) {< 0) return 0;< 0)< 0) {< 0) {< 0)< foldLines.length; idx++) {< foldLines.length; idx++) {<= lastRow) {< walkTokens.length; i++) {<= Math.max(2 * tabSize, 8) || indentedSoftWrap === false ? 0 : Math.floor(wrapLimit / 2);
9740  
9741 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {function getWrapIndent() {
9742 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {var indentation = 0;
9743 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {if (maxIndent === 0)
9744 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {return indentation;
9745 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {if (indentedSoftWrap) {
9746 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {for (var i = 0; i < tokens.length; i++) {
9747 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {var token = tokens[i];
9748 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {if (token == SPACE)
9749 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9750 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {else if (token == TAB)
9751 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9752 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {else if (token == TAB_SPACE)
9753 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {continue;
9754 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {else
9755 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {break;
9756 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9757 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9758 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {if (isCode && indentedSoftWrap !== false)
9759 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9760 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {return Math.min(indentation, maxIndent);
9761 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9762 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {function addSplit(screenPos) {
9763 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {var displayed = tokens.slice(lastSplit, screenPos);
9764 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {var len = displayed.length;
9765 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {"")
9766 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {/12/g, function() {
9767 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9768 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9769 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {/2/g, function() {
9770 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9771 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9772  
9773 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {if (!splits.length) {
9774 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9775 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9776 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9777 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9778 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9779 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9780 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9781 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {var indent = 0;
9782 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {while (displayLength - lastSplit > wrapLimit - indent) {
9783 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {var split = lastSplit + wrapLimit - indent;
9784 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {if (tokens[split - 1] >= SPACE && tokens[split] >= SPACE) {
9785 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9786 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {continue;
9787 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9788 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {if (tokens[split] == PLACEHOLDER_START || tokens[split] == PLACEHOLDER_BODY) {
9789 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {for (split; split != lastSplit - 1; split--) {
9790 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {if (tokens[split] == PLACEHOLDER_START) {
9791 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {break;
9792 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9793 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9794 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {if (split > lastSplit) {
9795 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9796 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {continue;
9797 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9798 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9799 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {for (split; split < tokens.length; split++) {
9800 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {if (tokens[split] != PLACEHOLDER_BODY) {
9801 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {break;
9802 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9803 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9804 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {if (split == tokens.length) {
9805 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {break; // Breaks the while-loop.
9806 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { }
9807 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9808 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {continue;
9809 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9810 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {var minSplit = Math.max(split - (wrapLimit -(wrapLimit>>2)), lastSplit - 1);
9811 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {while (split > minSplit && tokens[split] < PLACEHOLDER_START) {
9812 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9813 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9814 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {if (isCode) {
9815 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {while (split > minSplit && tokens[split] < PLACEHOLDER_START) {
9816 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9817 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9818 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {while (split > minSplit && tokens[split] == PUNCTUATION) {
9819 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9820 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9821 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {else {
9822 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {while (split > minSplit && tokens[split] < SPACE) {
9823 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9824 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9825 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9826 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {if (split > minSplit) {
9827 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9828 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {continue;
9829 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9830 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9831 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {if (tokens[split] == CHAR_EXT)
9832 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9833 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9834 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9835 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {return splits;
9836 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9837 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {this.$getDisplayTokens = function(str, offset) {
9838 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {var arr = [];
9839 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {var tabSize;
9840 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9841  
9842 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {for (var i = 0; i < str.length; i++) {
9843 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {var c = str.charCodeAt(i);
9844 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {if (c == 9) {
9845 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {this.getScreenTabSize(arr.length + offset);
9846 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9847 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {for (var n = 1; n < tabSize; n++) {
9848 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9849 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9850 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9851 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {else if (c == 32) {
9852 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9853 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {else if((c > 39 && c < 48) || (c > 57 && c < 64)) {
9854 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9855 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9856 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {else if (c >= 0x1100 && isFullWidth(c)) {
9857 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9858 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {else {
9859 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9860 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9861 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9862 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {return arr;
9863 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9864 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {this.$getStringScreenWidth = function(str, maxScreenColumn, screenColumn) {
9865 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {if (maxScreenColumn == 0)
9866 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {return [0, 0];
9867 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {if (maxScreenColumn == null)
9868 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9869 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9870  
9871 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {var c, column;
9872 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {for (column = 0; column < str.length; column++) {
9873 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9874 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {if (c == 9) {
9875 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {this.getScreenTabSize(screenColumn);
9876 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9877 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {else if (c >= 0x1100 && isFullWidth(c)) {
9878 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9879 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {else {
9880 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9881 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9882 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {if (screenColumn > maxScreenColumn) {
9883 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {break;
9884 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9885 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9886  
9887 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {return [screenColumn, column];
9888 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9889  
9890 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {this.lineWidgets = null;
9891 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {this.getRowLength = function(row) {
9892 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {if (this.lineWidgets)
9893 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {var h = this.lineWidgets[row] && this.lineWidgets[row].rowCount || 0;
9894 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {else
9895 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9896 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {if (!this.$useWrapMode || !this.$wrapData[row]) {
9897 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {return 1 + h;
9898 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {else {
9899 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {return this.$wrapData[row].length + 1 + h;
9900 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9901 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9902 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {this.getRowLineCount = function(row) {
9903 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {if (!this.$useWrapMode || !this.$wrapData[row]) {
9904 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {return 1;
9905 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {else {
9906 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {return this.$wrapData[row].length + 1;
9907 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9908 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9909  
9910 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {this.getRowWrapIndent = function(screenRow) {
9911 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {if (this.$useWrapMode) {
9912 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {var pos = this.screenToDocumentPosition(screenRow, Number.MAX_VALUE);
9913 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {var splits = this.$wrapData[pos.row];
9914 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {return splits.length && splits[0] < pos.column ? splits.indent : 0;
9915 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {else {
9916 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {return 0;
9917 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9918 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9919 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {this.getScreenLastRowColumn = function(screenRow) {
9920 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {var pos = this.screenToDocumentPosition(screenRow, Number.MAX_VALUE);
9921 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {return this.documentToScreenColumn(pos.row, pos.column);
9922 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9923 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {this.getDocumentLastRowColumn = function(docRow, docColumn) {
9924 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {var screenRow = this.documentToScreenRow(docRow, docColumn);
9925 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {return this.getScreenLastRowColumn(screenRow);
9926 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {
9927 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {this.getDocumentLastRowColumnPosition = function(docRow, docColumn) {
9928 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {var screenRow = this.documentToScreenRow(docRow, docColumn);
9929 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {return this.screenToDocumentPosition(screenRow, Number.MAX_VALUE / 10);
9930 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
9931 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.getRowSplitData = function(row) {
9932 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (!this.$useWrapMode) {
9933 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { return undefined;
9934 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { } else {
9935 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { return this.$wrapData[row];
9936 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { }
9937 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
9938 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.getScreenTabSize = function(screenColumn) {
9939 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { return this.$tabSize - screenColumn % this.$tabSize;
9940 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
9941  
9942  
9943 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.screenToDocumentRow = function(screenRow, screenColumn) {
9944 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { return this.screenToDocumentPosition(screenRow, screenColumn).row;
9945 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
9946  
9947  
9948 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.screenToDocumentColumn = function(screenRow, screenColumn) {
9949 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { return this.screenToDocumentPosition(screenRow, screenColumn).column;
9950 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { };
9951 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { this.screenToDocumentPosition = function(screenRow, screenColumn) {
9952 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) { if (screenRow < 0)
9953 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0) return {row: 0, column: 0};
9954  
9955 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0) var line;
9956 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0) var docRow = 0;
9957 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0) var docColumn = 0;
9958 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0) var column;
9959 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0) var row = 0;
9960 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0) var rowLength = 0;
9961  
9962 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0) var rowCache = this.$screenRowCache;
9963 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0) var i = this.$getRowCacheIndex(rowCache, screenRow);
9964 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0) var l = rowCache.length;
9965 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0) if (l && i >= 0) {
9966 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0) var row = rowCache[i];
9967 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0) var docRow = this.$docRowCache[i];
9968 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0) var doCache = screenRow > rowCache[l - 1];
9969 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0) } else {
9970 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0) var doCache = !l;
9971 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0) }
9972  
9973 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0) var maxRow = this.getLength() - 1;
9974 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0) var foldLine = this.getNextFoldLine(docRow);
9975 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0) var foldStart = foldLine ? foldLine.start.row : Infinity;
9976  
9977 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0) while (row <= screenRow) {
9978 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) { rowLength = this.getRowLength(docRow);
9979 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) { if (row + rowLength > screenRow || docRow >= maxRow) {
9980 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) { break;
9981 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) { } else {
9982 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) { row += rowLength;
9983 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) { docRow++;
9984 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) { if (docRow > foldStart) {
9985 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) { docRow = foldLine.end.row+1;
9986 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) { foldLine = this.getNextFoldLine(docRow, foldLine);
9987 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) { foldStart = foldLine ? foldLine.start.row : Infinity;
9988 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) { }
9989 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) { }
9990  
9991 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) { if (doCache) {
9992 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) { this.$docRowCache.push(docRow);
9993 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) { this.$screenRowCache.push(row);
9994 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) { }
9995 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) { }
9996  
9997 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) { if (foldLine && foldLine.start.row <= docRow) {
9998 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) { line = this.getFoldDisplayLine(foldLine);
9999 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) { docRow = foldLine.start.row;
10000 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) { } else if (row + rowLength <= screenRow || docRow > maxRow) {
10001 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > return {
10002 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > row: maxRow,
10003 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > column: this.getLine(maxRow).length
10004 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > };
10005 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > } else {
10006 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > line = this.getLine(docRow);
10007 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > foldLine = null;
10008 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > }
10009 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > var wrapIndent = 0;
10010 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > if (this.$useWrapMode) {
10011 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > var splits = this.$wrapData[docRow];
10012 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > if (splits) {
10013 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > var splitIndex = Math.floor(screenRow - row);
10014 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > column = splits[splitIndex];
10015 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > if(splitIndex > 0 && splits.length) {
10016 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > wrapIndent = splits.indent;
10017 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > docColumn = splits[splitIndex - 1] || splits[splits.length - 1];
10018 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > line = line.substring(docColumn);
10019 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > }
10020 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > }
10021 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > }
10022  
10023 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > docColumn += this.$getStringScreenWidth(line, screenColumn - wrapIndent)[1];
10024 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > if (this.$useWrapMode && docColumn >= column)
10025 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > docColumn = column - 1;
10026  
10027 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > if (foldLine)
10028 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > return foldLine.idxToPosition(docColumn);
10029  
10030 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > return {row: docRow, column: docColumn};
10031 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > };
10032 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > this.documentToScreenPosition = function(docRow, docColumn) {
10033 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > if (typeof docColumn === "undefined")
10034 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > var pos = this.$clipPositionToDocument(docRow.row, docRow.column);
10035 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > else
10036 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > pos = this.$clipPositionToDocument(docRow, docColumn);
10037  
10038 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > docRow = pos.row;
10039 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > docColumn = pos.column;
10040  
10041 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > var screenRow = 0;
10042 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > var foldStartRow = null;
10043 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > var fold = null;
10044 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > fold = this.getFoldAt(docRow, docColumn, 1);
10045 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > if (fold) {
10046 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > docRow = fold.start.row;
10047 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > docColumn = fold.start.column;
10048 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > }
10049  
10050 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > var rowEnd, row = 0;
10051  
10052  
10053 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > var rowCache = this.$docRowCache;
10054 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > var i = this.$getRowCacheIndex(rowCache, docRow);
10055 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > var l = rowCache.length;
10056 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > if (l && i >= 0) {
10057 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > var row = rowCache[i];
10058 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > var screenRow = this.$screenRowCache[i];
10059 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > var doCache = docRow > rowCache[l - 1];
10060 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > } else {
10061 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > var doCache = !l;
10062 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > }
10063  
10064 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > var foldLine = this.getNextFoldLine(row);
10065 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > var foldStart = foldLine ?foldLine.start.row :Infinity;
10066  
10067 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow > while (row < docRow) {
10068 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { if (row >= foldStart) {
10069 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { rowEnd = foldLine.end.row + 1;
10070 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { if (rowEnd > docRow)
10071 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { break;
10072 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { foldLine = this.getNextFoldLine(rowEnd, foldLine);
10073 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { foldStart = foldLine ?foldLine.start.row :Infinity;
10074 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { }
10075 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { else {
10076 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { rowEnd = row + 1;
10077 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { }
10078  
10079 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { screenRow += this.getRowLength(row);
10080 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { row = rowEnd;
10081  
10082 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { if (doCache) {
10083 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { this.$docRowCache.push(row);
10084 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { this.$screenRowCache.push(screenRow);
10085 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { }
10086 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { }
10087 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { var textLine = "";
10088 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { if (foldLine && row >= foldStart) {
10089 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { textLine = this.getFoldDisplayLine(foldLine, docRow, docColumn);
10090 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { foldStartRow = foldLine.start.row;
10091 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { } else {
10092 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { textLine = this.getLine(docRow).substring(0, docColumn);
10093 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { foldStartRow = docRow;
10094 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { }
10095 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { var wrapIndent = 0;
10096 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { if (this.$useWrapMode) {
10097 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { var wrapRow = this.$wrapData[foldStartRow];
10098 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { if (wrapRow) {
10099 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { var screenRowOffset = 0;
10100 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { while (textLine.length >= wrapRow[screenRowOffset]) {
10101 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { screenRow ++;
10102 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { screenRowOffset++;
10103 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { }
10104 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { textLine = textLine.substring(
10105 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { wrapRow[screenRowOffset - 1] || 0, textLine.length
10106 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { );
10107 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { wrapIndent = screenRowOffset > 0 ? wrapRow.indent : 0;
10108 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { }
10109 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { }
10110  
10111 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { return {
10112 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { row: screenRow,
10113 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { column: wrapIndent + this.$getStringScreenWidth(textLine)[0]
10114 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { };
10115 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { };
10116 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { this.documentToScreenColumn = function(row, docColumn) {
10117 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { return this.documentToScreenPosition(row, docColumn).column;
10118 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { };
10119 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { this.documentToScreenRow = function(docRow, docColumn) {
10120 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { return this.documentToScreenPosition(docRow, docColumn).row;
10121 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { };
10122 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { this.getScreenLength = function() {
10123 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { var screenRows = 0;
10124 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { var fold = null;
10125 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { if (!this.$useWrapMode) {
10126 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { screenRows = this.getLength();
10127 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { var foldData = this.$foldData;
10128 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) { for (var i = 0; i < foldData.length; i++) {
10129 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) { fold = foldData[i];
10130 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) { screenRows -= fold.end.row - fold.start.row;
10131 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) { }
10132 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) { } else {
10133 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) { var lastRow = this.$wrapData.length;
10134 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) { var row = 0, i = 0;
10135 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) { var fold = this.$foldData[i++];
10136 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) { var foldStart = fold ? fold.start.row :Infinity;
10137  
10138 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) { while (row < lastRow) {
10139 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) { var splits = this.$wrapData[row];
10140 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) { screenRows += splits ? splits.length + 1 : 1;
10141 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) { row ++;
10142 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) { if (row > foldStart) {
10143 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) { row = fold.end.row+1;
10144 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) { fold = this.$foldData[i++];
10145 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) { foldStart = fold ?fold.start.row :Infinity;
10146 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) { }
10147 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) { }
10148 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) { }
10149 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) { if (this.lineWidgets)
10150 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) { screenRows += this.$getWidgetScreenLength();
10151  
10152 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) { return screenRows;
10153 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) { };
10154 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) { this.$setFontMetrics = function(fm) {
10155 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) { if (!this.$enableVarChar) return;
10156 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) { this.$getStringScreenWidth = function(str, maxScreenColumn, screenColumn) {
10157 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) { if (maxScreenColumn === 0)
10158 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) { return [0, 0];
10159 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) { if (!maxScreenColumn)
10160 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) { maxScreenColumn = Infinity;
10161 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) { screenColumn = screenColumn || 0;
10162  
10163 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) { var c, column;
10164 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) { for (column = 0; column < str.length; column++) {
10165 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) { c = str.charAt(column);
10166 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) { if (c === "\t") {
10167 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) { screenColumn += this.getScreenTabSize(screenColumn);
10168 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) { } else {
10169 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) { screenColumn += fm.getCharacterWidth(c);
10170 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) { }
10171 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) { if (screenColumn > maxScreenColumn) {
10172 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) { break;
10173 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) { }
10174 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) { }
10175  
10176 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) { return [screenColumn, column];
10177 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) { };
10178 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) { };
10179  
10180 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) { this.destroy = function() {
10181 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) { if (this.bgTokenizer) {
10182 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) { this.bgTokenizer.setDocument(null);
10183 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) { this.bgTokenizer = null;
10184 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) { }
10185 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) { this.$stopWorker();
10186 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) { };
10187 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) { function isFullWidth(c) {
10188 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) { if (c < 0x1100)
10189 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100) return false;
10190 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100) return c >= 0x1100 && c <= 0x115F ||
10191 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F || c >= 0x11A3 && c <= 0x11A7 ||
10192 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 || c >= 0x11FA && c <= 0x11FF ||
10193 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF || c >= 0x2329 && c <= 0x232A ||
10194 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A || c >= 0x2E80 && c <= 0x2E99 ||
10195 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 || c >= 0x2E9B && c <= 0x2EF3 ||
10196 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 || c >= 0x2F00 && c <= 0x2FD5 ||
10197 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 || c >= 0x2FF0 && c <= 0x2FFB ||
10198 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB || c >= 0x3000 && c <= 0x303E ||
10199 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E || c >= 0x3041 && c <= 0x3096 ||
10200 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 || c >= 0x3099 && c <= 0x30FF ||
10201 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF || c >= 0x3105 && c <= 0x312D ||
10202 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D || c >= 0x3131 && c <= 0x318E ||
10203 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E || c >= 0x3190 && c <= 0x31BA ||
10204 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA || c >= 0x31C0 && c <= 0x31E3 ||
10205 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 || c >= 0x31F0 && c <= 0x321E ||
10206 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E || c >= 0x3220 && c <= 0x3247 ||
10207 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 || c >= 0x3250 && c <= 0x32FE ||
10208 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE || c >= 0x3300 && c <= 0x4DBF ||
10209 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF || c >= 0x4E00 && c <= 0xA48C ||
10210 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C || c >= 0xA490 && c <= 0xA4C6 ||
10211 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 || c >= 0xA960 && c <= 0xA97C ||
10212 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C || c >= 0xAC00 && c <= 0xD7A3 ||
10213 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 || c >= 0xD7B0 && c <= 0xD7C6 ||
10214 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 || c >= 0xD7CB && c <= 0xD7FB ||
10215 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB || c >= 0xF900 && c <= 0xFAFF ||
10216 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF || c >= 0xFE10 && c <= 0xFE19 ||
10217 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 || c >= 0xFE30 && c <= 0xFE52 ||
10218 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 || c >= 0xFE54 && c <= 0xFE66 ||
10219 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 || c >= 0xFE68 && c <= 0xFE6B ||
10220 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B || c >= 0xFF01 && c <= 0xFF60 ||
10221 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 || c >= 0xFFE0 && c <= 0xFFE6;
10222 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10223  
10224 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}).call(EditSession.prototype);
10225  
10226 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< 0)<= screenRow) {<= docRow) {<= screenRow || docRow >< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;require("./edit_session/folding").Folding.call(EditSession.prototype);
10227 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;require("./edit_session/bracket_match").BracketMatch.call(EditSession.prototype);
10228  
10229  
10230 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;config.defineOptions(EditSession.prototype, "session", {
10231 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; wrap: {
10232 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; set: function(value) {
10233 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (!value || value == "off")
10234 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; value = false;
10235 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; else if (value == "free")
10236 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; value = true;
10237 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; else if (value == "printMargin")
10238 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; value = -1;
10239 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; else if (typeof value == "string")
10240 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; value = parseInt(value, 10) || false;
10241  
10242 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (this.$wrap == value)
10243 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return;
10244 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.$wrap = value;
10245 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (!value) {
10246 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.setUseWrapMode(false);
10247 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; } else {
10248 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var col = typeof value == "number" ? value : null;
10249 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.setWrapLimitRange(col, col);
10250 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.setUseWrapMode(true);
10251 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10252 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; },
10253 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; get: function() {
10254 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (this.getUseWrapMode()) {
10255 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (this.$wrap == -1)
10256 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return "printMargin";
10257 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (!this.getWrapLimitRange().min)
10258 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return "free";
10259 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return this.$wrap;
10260 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10261 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return "off";
10262 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; },
10263 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; handlesSet: true
10264 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; },
10265 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; wrapMethod: {
10266 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; set: function(val) {
10267 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; val = val == "auto"
10268 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; ? this.$mode.type != "text"
10269 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; : val != "text";
10270 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (val != this.$wrapAsCode) {
10271 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.$wrapAsCode = val;
10272 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (this.$useWrapMode) {
10273 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.$modified = true;
10274 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.$resetRowCache(0);
10275 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.$updateWrapData(0, this.getLength() - 1);
10276 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10277 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10278 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; },
10279 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; initialValue: "auto"
10280 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; },
10281 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; indentedSoftWrap: { initialValue: true },
10282 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; firstLineNumber: {
10283 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; set: function() {this._signal("changeBreakpoint");},
10284 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; initialValue: 1
10285 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; },
10286 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; useWorker: {
10287 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; set: function(useWorker) {
10288 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.$useWorker = useWorker;
10289  
10290 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.$stopWorker();
10291 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (useWorker)
10292 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.$startWorker();
10293 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; },
10294 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; initialValue: true
10295 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; },
10296 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; useSoftTabs: {initialValue: true},
10297 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; tabSize: {
10298 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; set: function(tabSize) {
10299 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (isNaN(tabSize) || this.$tabSize === tabSize) return;
10300  
10301 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.$modified = true;
10302 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.$rowLengthCache = [];
10303 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.$tabSize = tabSize;
10304 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this._signal("changeTabSize");
10305 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; },
10306 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; initialValue: 4,
10307 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; handlesSet: true
10308 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; },
10309 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; overwrite: {
10310 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; set: function(val) {this._signal("changeOverwrite");},
10311 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; initialValue: false
10312 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; },
10313 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; newLineMode: {
10314 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; set: function(val) {this.doc.setNewLineMode(val)},
10315 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; get: function() {return this.doc.getNewLineMode()},
10316 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; handlesSet: true
10317 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; },
10318 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; mode: {
10319 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; set: function(val) { this.setMode(val) },
10320 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; get: function() { return this.$modeId }
10321 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10322 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;});
10323  
10324 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;exports.EditSession = EditSession;
10325 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;});
10326  
10327 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;ace.define("ace/search",["require","exports","module","ace/lib/lang","ace/lib/oop","ace/range"], function(require, exports, module) {
10328 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;"use strict";
10329  
10330 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;var lang = require("./lib/lang");
10331 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;var oop = require("./lib/oop");
10332 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;var Range = require("./range").Range;
10333  
10334 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;var Search = function() {
10335 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.$options = {};
10336 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;};
10337  
10338 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;(function() {
10339 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.set = function(options) {
10340 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; oop.mixin(this.$options, options);
10341 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return this;
10342 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; };
10343 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.getOptions = function() {
10344 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return lang.copyObject(this.$options);
10345 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; };
10346 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.setOptions = function(options) {
10347 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.$options = options;
10348 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; };
10349 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.find = function(session) {
10350 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var options = this.$options;
10351 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var iterator = this.$matchIterator(session, options);
10352 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (!iterator)
10353 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return false;
10354  
10355 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var firstRange = null;
10356 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; iterator.forEach(function(range, row, offset) {
10357 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (!range.start) {
10358 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var column = range.offset + (offset || 0);
10359 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; firstRange = new Range(row, column, row, column + range.length);
10360 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (!range.length && options.start && options.start.start
10361 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; && options.skipCurrent != false && firstRange.isEqual(options.start)
10362 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; ) {
10363 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; firstRange = null;
10364 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return false;
10365 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10366 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; } else
10367 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; firstRange = range;
10368 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return true;
10369 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; });
10370  
10371 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return firstRange;
10372 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; };
10373 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.findAll = function(session) {
10374 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var options = this.$options;
10375 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (!options.needle)
10376 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return [];
10377 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.$assembleRegExp(options);
10378  
10379 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var range = options.range;
10380 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var lines = range
10381 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; ? session.getLines(range.start.row, range.end.row)
10382 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; : session.doc.getAllLines();
10383  
10384 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var ranges = [];
10385 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var re = options.re;
10386 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (options.$isMultiLine) {
10387 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var len = re.length;
10388 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var maxRow = lines.length - len;
10389 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var prevRange;
10390 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; outer: for (var row = re.offset || 0; row <= maxRow; row++) {
10391 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; for (var j = 0; j < len; j++)
10392 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (lines[row + j].search(re[j]) == -1)
10393 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; continue outer;
10394  
10395 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var startLine = lines[row];
10396 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var line = lines[row + len - 1];
10397 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var startIndex = startLine.length - startLine.match(re[0])[0].length;
10398 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var endIndex = line.match(re[len - 1])[0].length;
10399  
10400 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (prevRange && prevRange.end.row === row &&
10401 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; prevRange.end.column > startIndex
10402 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; ) {
10403 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; continue;
10404 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10405 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; ranges.push(prevRange = new Range(
10406 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; row, startIndex, row + len - 1, endIndex
10407 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; ));
10408 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (len > 2)
10409 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; row = row + len - 2;
10410 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10411 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; } else {
10412 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; for (var i = 0; i < lines.length; i++) {
10413 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var matches = lang.getMatchOffsets(lines[i], re);
10414 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; for (var j = 0; j < matches.length; j++) {
10415 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var match = matches[j];
10416 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; ranges.push(new Range(i, match.offset, i, match.offset + match.length));
10417 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10418 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10419 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10420  
10421 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (range) {
10422 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var startColumn = range.start.column;
10423 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var endColumn = range.start.column;
10424 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var i = 0, j = ranges.length - 1;
10425 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; while (i < j && ranges[i].start.column < startColumn && ranges[i].start.row == range.start.row)
10426 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; i++;
10427  
10428 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; while (i < j && ranges[j].end.column > endColumn && ranges[j].end.row == range.end.row)
10429 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; j--;
10430  
10431 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; ranges = ranges.slice(i, j + 1);
10432 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; for (i = 0, j = ranges.length; i < j; i++) {
10433 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; ranges[i].start.row += range.start.row;
10434 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; ranges[i].end.row += range.start.row;
10435 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10436 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10437  
10438 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return ranges;
10439 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; };
10440 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.replace = function(input, replacement) {
10441 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var options = this.$options;
10442  
10443 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var re = this.$assembleRegExp(options);
10444 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (options.$isMultiLine)
10445 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return replacement;
10446  
10447 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (!re)
10448 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return;
10449  
10450 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var match = re.exec(input);
10451 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (!match || match[0].length != input.length)
10452 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return null;
10453  
10454 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; replacement = input.replace(re, replacement);
10455 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (options.preserveCase) {
10456 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; replacement = replacement.split("");
10457 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; for (var i = Math.min(input.length, input.length); i--; ) {
10458 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var ch = input[i];
10459 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (ch && ch.toLowerCase() != ch)
10460 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; replacement[i] = replacement[i].toUpperCase();
10461 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; else
10462 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; replacement[i] = replacement[i].toLowerCase();
10463 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10464 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; replacement = replacement.join("");
10465 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10466  
10467 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return replacement;
10468 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; };
10469  
10470 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.$matchIterator = function(session, options) {
10471 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var re = this.$assembleRegExp(options);
10472 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (!re)
10473 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return false;
10474  
10475 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var callback;
10476 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (options.$isMultiLine) {
10477 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var len = re.length;
10478 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var matchIterator = function(line, row, offset) {
10479 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var startIndex = line.search(re[0]);
10480 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (startIndex == -1)
10481 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return;
10482 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; for (var i = 1; i < len; i++) {
10483 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; line = session.getLine(row + i);
10484 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (line.search(re[i]) == -1)
10485 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return;
10486 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10487  
10488 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var endIndex = line.match(re[len - 1])[0].length;
10489  
10490 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var range = new Range(row, startIndex, row + len - 1, endIndex);
10491 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (re.offset == 1) {
10492 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; range.start.row--;
10493 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; range.start.column = Number.MAX_VALUE;
10494 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; } else if (offset)
10495 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; range.start.column += offset;
10496  
10497 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (callback(range))
10498 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return true;
10499 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; };
10500 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; } else if (options.backwards) {
10501 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var matchIterator = function(line, row, startIndex) {
10502 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var matches = lang.getMatchOffsets(line, re);
10503 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; for (var i = matches.length-1; i >= 0; i--)
10504 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (callback(matches[i], row, startIndex))
10505 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return true;
10506 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; };
10507 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; } else {
10508 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var matchIterator = function(line, row, startIndex) {
10509 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var matches = lang.getMatchOffsets(line, re);
10510 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; for (var i = 0; i < matches.length; i++)
10511 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (callback(matches[i], row, startIndex))
10512 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return true;
10513 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; };
10514 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10515  
10516 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var lineIterator = this.$lineIterator(session, options);
10517  
10518 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return {
10519 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; forEach: function(_callback) {
10520 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; callback = _callback;
10521 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; lineIterator.forEach(matchIterator);
10522 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10523 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; };
10524 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; };
10525  
10526 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.$assembleRegExp = function(options, $disableFakeMultiline) {
10527 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (options.needle instanceof RegExp)
10528 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return options.re = options.needle;
10529  
10530 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var needle = options.needle;
10531  
10532 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (!options.needle)
10533 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return options.re = false;
10534  
10535 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (!options.regExp)
10536 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; needle = lang.escapeRegExp(needle);
10537  
10538 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (options.wholeWord)
10539 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; needle = addWordBoundary(needle, options);
10540  
10541 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var modifier = options.caseSensitive ? "gm" : "gmi";
10542  
10543 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; options.$isMultiLine = !$disableFakeMultiline && /[\n\r]/.test(needle);
10544 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (options.$isMultiLine)
10545 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return options.re = this.$assembleMultilineRegExp(needle, modifier);
10546  
10547 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; try {
10548 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var re = new RegExp(needle, modifier);
10549 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; } catch(e) {
10550 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; re = false;
10551 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10552 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return options.re = re;
10553 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; };
10554  
10555 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.$assembleMultilineRegExp = function(needle, modifier) {
10556 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var parts = needle.replace(/\r\n|\r|\n/g, "$\n^").split("\n");
10557 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var re = [];
10558 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; for (var i = 0; i < parts.length; i++) try {
10559 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; re.push(new RegExp(parts[i], modifier));
10560 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; } catch(e) {
10561 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return false;
10562 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10563 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (parts[0] == "") {
10564 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; re.shift();
10565 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; re.offset = 1;
10566 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; } else {
10567 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; re.offset = 0;
10568 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10569 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return re;
10570 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; };
10571  
10572 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.$lineIterator = function(session, options) {
10573 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var backwards = options.backwards == true;
10574 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var skipCurrent = options.skipCurrent != false;
10575  
10576 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var range = options.range;
10577 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var start = options.start;
10578 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (!start)
10579 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; start = range ? range[backwards ? "end" : "start"] : session.selection.getRange();
10580  
10581 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (start.start)
10582 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; start = start[skipCurrent != backwards ? "end" : "start"];
10583  
10584 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var firstRow = range ? range.start.row : 0;
10585 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var lastRow = range ? range.end.row : session.getLength() - 1;
10586  
10587 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var forEach = backwards ? function(callback) {
10588 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var row = start.row;
10589  
10590 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var line = session.getLine(row).substring(0, start.column);
10591 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (callback(line, row))
10592 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return;
10593  
10594 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; for (row--; row >= firstRow; row--)
10595 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (callback(session.getLine(row), row))
10596 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return;
10597  
10598 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (options.wrap == false)
10599 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return;
10600  
10601 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; for (row = lastRow, firstRow = start.row; row >= firstRow; row--)
10602 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (callback(session.getLine(row), row))
10603 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return;
10604 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; } : function(callback) {
10605 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var row = start.row;
10606  
10607 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var line = session.getLine(row).substr(start.column);
10608 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (callback(line, row, start.column))
10609 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return;
10610  
10611 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; for (row = row+1; row <= lastRow; row++)
10612 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (callback(session.getLine(row), row))
10613 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return;
10614  
10615 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (options.wrap == false)
10616 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return;
10617  
10618 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; for (row = firstRow, lastRow = start.row; row <= lastRow; row++)
10619 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (callback(session.getLine(row), row))
10620 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return;
10621 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; };
10622  
10623 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return {forEach: forEach};
10624 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; };
10625  
10626 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}).call(Search.prototype);
10627  
10628 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;function addWordBoundary(needle, options) {
10629 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; function wordBoundary(c) {
10630 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (/\w/.test(c) || options.regExp) return "\\b";
10631 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return "";
10632 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10633 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return wordBoundary(needle[0]) + needle
10634 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; + wordBoundary(needle[needle.length - 1]);
10635 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}
10636  
10637 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;exports.Search = Search;
10638 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;});
10639  
10640 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;ace.define("ace/keyboard/hash_handler",["require","exports","module","ace/lib/keys","ace/lib/useragent"], function(require, exports, module) {
10641 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;"use strict";
10642  
10643 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;var keyUtil = require("../lib/keys");
10644 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;var useragent = require("../lib/useragent");
10645 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;var KEY_MODS = keyUtil.KEY_MODS;
10646  
10647 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;function HashHandler(config, platform) {
10648 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.platform = platform || (useragent.isMac ? "mac" : "win");
10649 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.commands = {};
10650 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.commandKeyBinding = {};
10651 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.addCommands(config);
10652 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.$singleCommand = true;
10653 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}
10654  
10655 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;function MultiHashHandler(config, platform) {
10656 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; HashHandler.call(this, config, platform);
10657 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.$singleCommand = false;
10658 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}
10659  
10660 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;MultiHashHandler.prototype = HashHandler.prototype;
10661  
10662 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;(function() {
10663  
10664  
10665 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.addCommand = function(command) {
10666 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (this.commands[command.name])
10667 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.removeCommand(command);
10668  
10669 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.commands[command.name] = command;
10670  
10671 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (command.bindKey)
10672 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this._buildKeyHash(command);
10673 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; };
10674  
10675 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.removeCommand = function(command, keepCommand) {
10676 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var name = command && (typeof command === 'string' ? command : command.name);
10677 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; command = this.commands[name];
10678 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (!keepCommand)
10679 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; delete this.commands[name];
10680 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var ckb = this.commandKeyBinding;
10681 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; for (var keyId in ckb) {
10682 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var cmdGroup = ckb[keyId];
10683 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (cmdGroup == command) {
10684 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; delete ckb[keyId];
10685 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; } else if (Array.isArray(cmdGroup)) {
10686 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var i = cmdGroup.indexOf(command);
10687 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (i != -1) {
10688 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; cmdGroup.splice(i, 1);
10689 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (cmdGroup.length == 1)
10690 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; ckb[keyId] = cmdGroup[0];
10691 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10692 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10693 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10694 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; };
10695  
10696 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.bindKey = function(key, command, position) {
10697 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (typeof key == "object" && key) {
10698 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (position == undefined)
10699 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; position = key.position;
10700 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; key = key[this.platform];
10701 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10702 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (!key)
10703 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return;
10704 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (typeof command == "function")
10705 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return this.addCommand({exec: command, bindKey: key, name: command.name || key});
10706  
10707 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; key.split("|").forEach(function(keyPart) {
10708 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var chain = "";
10709 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (keyPart.indexOf(" ") != -1) {
10710 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var parts = keyPart.split(/\s+/);
10711 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; keyPart = parts.pop();
10712 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; parts.forEach(function(keyPart) {
10713 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var binding = this.parseKeys(keyPart);
10714 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var id = KEY_MODS[binding.hashId] + binding.key;
10715 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; chain += (chain ? " " : "") + id;
10716 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this._addCommandToBinding(chain, "chainKeys");
10717 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }, this);
10718 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; chain += " ";
10719 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10720 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var binding = this.parseKeys(keyPart);
10721 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var id = KEY_MODS[binding.hashId] + binding.key;
10722 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this._addCommandToBinding(chain + id, command, position);
10723 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }, this);
10724 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; };
10725  
10726 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; function getPosition(command) {
10727 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return typeof command == "object" && command.bindKey
10728 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; && command.bindKey.position || 0;
10729 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10730 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this._addCommandToBinding = function(keyId, command, position) {
10731 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var ckb = this.commandKeyBinding, i;
10732 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (!command) {
10733 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; delete ckb[keyId];
10734 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; } else if (!ckb[keyId] || this.$singleCommand) {
10735 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; ckb[keyId] = command;
10736 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; } else {
10737 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (!Array.isArray(ckb[keyId])) {
10738 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; ckb[keyId] = [ckb[keyId]];
10739 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; } else if ((i = ckb[keyId].indexOf(command)) != -1) {
10740 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; ckb[keyId].splice(i, 1);
10741 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10742  
10743 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (typeof position != "number") {
10744 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (position || command.isDefault)
10745 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; position = -100;
10746 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; else
10747 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; position = getPosition(command);
10748 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10749 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var commands = ckb[keyId];
10750 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; for (i = 0; i < commands.length; i++) {
10751 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var other = commands[i];
10752 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var otherPos = getPosition(other);
10753 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (otherPos > position)
10754 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; break;
10755 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10756 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; commands.splice(i, 0, command);
10757 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10758 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; };
10759  
10760 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.addCommands = function(commands) {
10761 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; commands && Object.keys(commands).forEach(function(name) {
10762 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var command = commands[name];
10763 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (!command)
10764 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return;
10765  
10766 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (typeof command === "string")
10767 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return this.bindKey(command, name);
10768  
10769 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (typeof command === "function")
10770 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; command = { exec: command };
10771  
10772 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (typeof command !== "object")
10773 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return;
10774  
10775 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (!command.name)
10776 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; command.name = name;
10777  
10778 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.addCommand(command);
10779 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }, this);
10780 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; };
10781  
10782 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.removeCommands = function(commands) {
10783 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; Object.keys(commands).forEach(function(name) {
10784 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.removeCommand(commands[name]);
10785 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }, this);
10786 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; };
10787  
10788 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.bindKeys = function(keyList) {
10789 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; Object.keys(keyList).forEach(function(key) {
10790 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.bindKey(key, keyList[key]);
10791 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }, this);
10792 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; };
10793  
10794 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this._buildKeyHash = function(command) {
10795 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.bindKey(command.bindKey, command);
10796 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; };
10797 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.parseKeys = function(keys) {
10798 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var parts = keys.toLowerCase().split(/[\-\+]([\-\+])?/).filter(function(x){return x});
10799 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var key = parts.pop();
10800  
10801 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var keyCode = keyUtil[key];
10802 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (keyUtil.FUNCTION_KEYS[keyCode])
10803 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; key = keyUtil.FUNCTION_KEYS[keyCode].toLowerCase();
10804 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; else if (!parts.length)
10805 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return {key: key, hashId: -1};
10806 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; else if (parts.length == 1 && parts[0] == "shift")
10807 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return {key: key.toUpperCase(), hashId: -1};
10808  
10809 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var hashId = 0;
10810 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; for (var i = parts.length; i--;) {
10811 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var modifier = keyUtil.KEY_MODS[parts[i]];
10812 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (modifier == null) {
10813 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (typeof console != "undefined")
10814 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; console.error("invalid modifier " + parts[i] + " in " + keys);
10815 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return false;
10816 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10817 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; hashId |= modifier;
10818 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10819 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return {key: key, hashId: hashId};
10820 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; };
10821  
10822 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.findKeyCommand = function findKeyCommand(hashId, keyString) {
10823 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var key = KEY_MODS[hashId] + keyString;
10824 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return this.commandKeyBinding[key];
10825 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; };
10826  
10827 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.handleKeyboard = function(data, hashId, keyString, keyCode) {
10828 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (keyCode < 0) return;
10829 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var key = KEY_MODS[hashId] + keyString;
10830 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var command = this.commandKeyBinding[key];
10831 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (data.$keyChain) {
10832 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; data.$keyChain += " " + key;
10833 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; command = this.commandKeyBinding[data.$keyChain] || command;
10834 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10835  
10836 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (command) {
10837 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (command == "chainKeys" || command[command.length - 1] == "chainKeys") {
10838 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; data.$keyChain = data.$keyChain || key;
10839 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return {command: "null"};
10840 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10841 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10842  
10843 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (data.$keyChain) {
10844 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if ((!hashId || hashId == 4) && keyString.length == 1)
10845 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; data.$keyChain = data.$keyChain.slice(0, -key.length - 1); // wait for input
10846 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; else if (hashId == -1 || keyCode > 0)
10847 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; data.$keyChain = ""; // reset keyChain
10848 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10849 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return {command: command};
10850 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; };
10851  
10852 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.getStatusText = function(editor, data) {
10853 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return data.$keyChain || "";
10854 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; };
10855  
10856 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}).call(HashHandler.prototype);
10857  
10858 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;exports.HashHandler = HashHandler;
10859 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;exports.MultiHashHandler = MultiHashHandler;
10860 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;});
10861  
10862 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;ace.define("ace/commands/command_manager",["require","exports","module","ace/lib/oop","ace/keyboard/hash_handler","ace/lib/event_emitter"], function(require, exports, module) {
10863 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;"use strict";
10864  
10865 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;var oop = require("../lib/oop");
10866 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;var MultiHashHandler = require("../keyboard/hash_handler").MultiHashHandler;
10867 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;var EventEmitter = require("../lib/event_emitter").EventEmitter;
10868  
10869 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;var CommandManager = function(platform, commands) {
10870 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; MultiHashHandler.call(this, commands, platform);
10871 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.byName = this.commands;
10872 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.setDefaultHandler("exec", function(e) {
10873 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return e.command.exec(e.editor, e.args || {});
10874 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; });
10875 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;};
10876  
10877 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;oop.inherits(CommandManager, MultiHashHandler);
10878  
10879 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;(function() {
10880  
10881 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; oop.implement(this, EventEmitter);
10882  
10883 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.exec = function(command, editor, args) {
10884 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (Array.isArray(command)) {
10885 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; for (var i = command.length; i--; ) {
10886 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (this.exec(command[i], editor, args)) return true;
10887 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10888 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return false;
10889 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10890  
10891 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (typeof command === "string")
10892 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; command = this.commands[command];
10893  
10894 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (!command)
10895 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return false;
10896  
10897 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (editor && editor.$readOnly && !command.readOnly)
10898 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return false;
10899  
10900 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var e = {editor: editor, command: command, args: args};
10901 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; e.returnValue = this._emit("exec", e);
10902 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this._signal("afterExec", e);
10903  
10904 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return e.returnValue === false ? false : true;
10905 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; };
10906  
10907 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.toggleRecording = function(editor) {
10908 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (this.$inReplay)
10909 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return;
10910  
10911 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; editor && editor._emit("changeStatus");
10912 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (this.recording) {
10913 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.macro.pop();
10914 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.removeEventListener("exec", this.$addCommandToMacro);
10915  
10916 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (!this.macro.length)
10917 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.macro = this.oldMacro;
10918  
10919 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return this.recording = false;
10920 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10921 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (!this.$addCommandToMacro) {
10922 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.$addCommandToMacro = function(e) {
10923 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.macro.push([e.command, e.args]);
10924 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }.bind(this);
10925 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10926  
10927 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.oldMacro = this.macro;
10928 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.macro = [];
10929 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.on("exec", this.$addCommandToMacro);
10930 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return this.recording = true;
10931 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; };
10932  
10933 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.replay = function(editor) {
10934 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (this.$inReplay || !this.macro)
10935 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return;
10936  
10937 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (this.recording)
10938 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return this.toggleRecording(editor);
10939  
10940 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; try {
10941 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.$inReplay = true;
10942 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.macro.forEach(function(x) {
10943 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (typeof x == "string")
10944 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.exec(x, editor);
10945 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; else
10946 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.exec(x[0], editor, x[1]);
10947 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }, this);
10948 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; } finally {
10949 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.$inReplay = false;
10950 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
10951 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; };
10952  
10953 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.trimMacro = function(m) {
10954 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return m.map(function(x){
10955 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (typeof x[0] != "string")
10956 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; x[0] = x[0].name;
10957 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (!x[1])
10958 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; x = x[0];
10959 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return x;
10960 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; });
10961 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; };
10962  
10963 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}).call(CommandManager.prototype);
10964  
10965 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;exports.CommandManager = CommandManager;
10966  
10967 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;});
10968  
10969 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;ace.define("ace/commands/default_commands",["require","exports","module","ace/lib/lang","ace/config","ace/range"], function(require, exports, module) {
10970 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;"use strict";
10971  
10972 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;var lang = require("../lib/lang");
10973 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;var config = require("../config");
10974 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;var Range = require("../range").Range;
10975  
10976 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;function bindKey(win, mac) {
10977 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return {win: win, mac: mac};
10978 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}
10979 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;exports.commands = [{
10980 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "showSettingsMenu",
10981 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-,", "Command-,"),
10982 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) {
10983 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; config.loadModule("ace/ext/settings_menu", function(module) {
10984 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; module.init(editor);
10985 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; editor.showSettingsMenu();
10986 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; });
10987 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; },
10988 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
10989 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
10990 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "goToNextError",
10991 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Alt-E", "F4"),
10992 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) {
10993 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; config.loadModule("ace/ext/error_marker", function(module) {
10994 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; module.showErrorMarker(editor, 1);
10995 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; });
10996 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; },
10997 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "animate",
10998 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
10999 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11000 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "goToPreviousError",
11001 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Alt-Shift-E", "Shift-F4"),
11002 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) {
11003 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; config.loadModule("ace/ext/error_marker", function(module) {
11004 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; module.showErrorMarker(editor, -1);
11005 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; });
11006 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; },
11007 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "animate",
11008 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11009 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11010 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "selectall",
11011 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-A", "Command-A"),
11012 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.selectAll(); },
11013 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11014 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11015 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "centerselection",
11016 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey(null, "Ctrl-L"),
11017 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.centerSelection(); },
11018 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11019 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11020 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "gotoline",
11021 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-L", "Command-L"),
11022 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) {
11023 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var line = parseInt(prompt("Enter line number:"), 10);
11024 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (!isNaN(line)) {
11025 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; editor.gotoLine(line);
11026 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
11027 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; },
11028 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11029 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11030 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "fold",
11031 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Alt-L|Ctrl-F1", "Command-Alt-L|Command-F1"),
11032 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.session.toggleFold(false); },
11033 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11034 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "center",
11035 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11036 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11037 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "unfold",
11038 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Alt-Shift-L|Ctrl-Shift-F1", "Command-Alt-Shift-L|Command-Shift-F1"),
11039 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.session.toggleFold(true); },
11040 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11041 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "center",
11042 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11043 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11044 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "toggleFoldWidget",
11045 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("F2", "F2"),
11046 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.session.toggleFoldWidget(); },
11047 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11048 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "center",
11049 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11050 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11051 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "toggleParentFoldWidget",
11052 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Alt-F2", "Alt-F2"),
11053 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.session.toggleFoldWidget(true); },
11054 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11055 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "center",
11056 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11057 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11058 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "foldall",
11059 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey(null, "Ctrl-Command-Option-0"),
11060 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.session.foldAll(); },
11061 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "center",
11062 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11063 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11064 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "foldOther",
11065 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Alt-0", "Command-Option-0"),
11066 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) {
11067 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; editor.session.foldAll();
11068 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; editor.session.unfold(editor.selection.getAllRanges());
11069 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; },
11070 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "center",
11071 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11072 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11073 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "unfoldall",
11074 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Alt-Shift-0", "Command-Option-Shift-0"),
11075 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.session.unfold(); },
11076 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "center",
11077 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11078 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11079 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "findnext",
11080 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-K", "Command-G"),
11081 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.findNext(); },
11082 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11083 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "center",
11084 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11085 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11086 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "findprevious",
11087 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-Shift-K", "Command-Shift-G"),
11088 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.findPrevious(); },
11089 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11090 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "center",
11091 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11092 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11093 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "selectOrFindNext",
11094 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Alt-K", "Ctrl-G"),
11095 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) {
11096 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (editor.selection.isEmpty())
11097 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; editor.selection.selectWord();
11098 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; else
11099 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; editor.findNext();
11100 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; },
11101 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11102 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11103 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "selectOrFindPrevious",
11104 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Alt-Shift-K", "Ctrl-Shift-G"),
11105 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) {
11106 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (editor.selection.isEmpty())
11107 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; editor.selection.selectWord();
11108 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; else
11109 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; editor.findPrevious();
11110 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; },
11111 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11112 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11113 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "find",
11114 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-F", "Command-F"),
11115 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) {
11116 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; config.loadModule("ace/ext/searchbox", function(e) {e.Search(editor)});
11117 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; },
11118 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11119 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11120 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "overwrite",
11121 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: "Insert",
11122 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.toggleOverwrite(); },
11123 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11124 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11125 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "selecttostart",
11126 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-Shift-Home", "Command-Shift-Home|Command-Shift-Up"),
11127 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.getSelection().selectFileStart(); },
11128 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11129 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true,
11130 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "animate",
11131 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; aceCommandGroup: "fileJump"
11132 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11133 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "gotostart",
11134 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-Home", "Command-Home|Command-Up"),
11135 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.navigateFileStart(); },
11136 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11137 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true,
11138 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "animate",
11139 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; aceCommandGroup: "fileJump"
11140 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11141 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "selectup",
11142 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Shift-Up", "Shift-Up|Ctrl-Shift-P"),
11143 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.getSelection().selectUp(); },
11144 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11145 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor",
11146 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11147 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11148 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "golineup",
11149 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Up", "Up|Ctrl-P"),
11150 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor, args) { editor.navigateUp(args.times); },
11151 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11152 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor",
11153 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11154 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11155 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "selecttoend",
11156 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-Shift-End", "Command-Shift-End|Command-Shift-Down"),
11157 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.getSelection().selectFileEnd(); },
11158 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11159 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true,
11160 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "animate",
11161 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; aceCommandGroup: "fileJump"
11162 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11163 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "gotoend",
11164 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-End", "Command-End|Command-Down"),
11165 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.navigateFileEnd(); },
11166 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11167 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true,
11168 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "animate",
11169 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; aceCommandGroup: "fileJump"
11170 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11171 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "selectdown",
11172 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Shift-Down", "Shift-Down|Ctrl-Shift-N"),
11173 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.getSelection().selectDown(); },
11174 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11175 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor",
11176 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11177 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11178 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "golinedown",
11179 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Down", "Down|Ctrl-N"),
11180 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor, args) { editor.navigateDown(args.times); },
11181 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11182 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor",
11183 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11184 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11185 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "selectwordleft",
11186 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-Shift-Left", "Option-Shift-Left"),
11187 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.getSelection().selectWordLeft(); },
11188 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11189 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor",
11190 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11191 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11192 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "gotowordleft",
11193 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-Left", "Option-Left"),
11194 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.navigateWordLeft(); },
11195 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11196 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor",
11197 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11198 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11199 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "selecttolinestart",
11200 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Alt-Shift-Left", "Command-Shift-Left|Ctrl-Shift-A"),
11201 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.getSelection().selectLineStart(); },
11202 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11203 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor",
11204 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11205 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11206 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "gotolinestart",
11207 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Alt-Left|Home", "Command-Left|Home|Ctrl-A"),
11208 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.navigateLineStart(); },
11209 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11210 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor",
11211 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11212 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11213 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "selectleft",
11214 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Shift-Left", "Shift-Left|Ctrl-Shift-B"),
11215 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.getSelection().selectLeft(); },
11216 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11217 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor",
11218 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11219 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11220 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "gotoleft",
11221 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Left", "Left|Ctrl-B"),
11222 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor, args) { editor.navigateLeft(args.times); },
11223 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11224 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor",
11225 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11226 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11227 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "selectwordright",
11228 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-Shift-Right", "Option-Shift-Right"),
11229 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.getSelection().selectWordRight(); },
11230 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11231 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor",
11232 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11233 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11234 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "gotowordright",
11235 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-Right", "Option-Right"),
11236 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.navigateWordRight(); },
11237 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11238 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor",
11239 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11240 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11241 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "selecttolineend",
11242 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Alt-Shift-Right", "Command-Shift-Right|Shift-End|Ctrl-Shift-E"),
11243 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.getSelection().selectLineEnd(); },
11244 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11245 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor",
11246 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11247 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11248 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "gotolineend",
11249 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Alt-Right|End", "Command-Right|End|Ctrl-E"),
11250 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.navigateLineEnd(); },
11251 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11252 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor",
11253 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11254 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11255 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "selectright",
11256 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Shift-Right", "Shift-Right"),
11257 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.getSelection().selectRight(); },
11258 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11259 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor",
11260 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11261 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11262 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "gotoright",
11263 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Right", "Right|Ctrl-F"),
11264 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor, args) { editor.navigateRight(args.times); },
11265 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11266 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor",
11267 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11268 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11269 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "selectpagedown",
11270 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: "Shift-PageDown",
11271 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.selectPageDown(); },
11272 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11273 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11274 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "pagedown",
11275 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey(null, "Option-PageDown"),
11276 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.scrollPageDown(); },
11277 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11278 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11279 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "gotopagedown",
11280 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("PageDown", "PageDown|Ctrl-V"),
11281 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.gotoPageDown(); },
11282 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11283 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11284 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "selectpageup",
11285 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: "Shift-PageUp",
11286 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.selectPageUp(); },
11287 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11288 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11289 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "pageup",
11290 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey(null, "Option-PageUp"),
11291 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.scrollPageUp(); },
11292 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11293 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11294 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "gotopageup",
11295 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: "PageUp",
11296 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.gotoPageUp(); },
11297 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11298 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11299 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "scrollup",
11300 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-Up", null),
11301 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(e) { e.renderer.scrollBy(0, -2 * e.renderer.layerConfig.lineHeight); },
11302 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11303 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11304 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "scrolldown",
11305 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-Down", null),
11306 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(e) { e.renderer.scrollBy(0, 2 * e.renderer.layerConfig.lineHeight); },
11307 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11308 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11309 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "selectlinestart",
11310 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: "Shift-Home",
11311 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.getSelection().selectLineStart(); },
11312 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11313 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor",
11314 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11315 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11316 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "selectlineend",
11317 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: "Shift-End",
11318 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.getSelection().selectLineEnd(); },
11319 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11320 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor",
11321 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11322 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11323 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "togglerecording",
11324 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-Alt-E", "Command-Option-E"),
11325 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.commands.toggleRecording(editor); },
11326 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11327 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11328 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "replaymacro",
11329 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-Shift-E", "Command-Shift-E"),
11330 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.commands.replay(editor); },
11331 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11332 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11333 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "jumptomatching",
11334 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-P", "Ctrl-P"),
11335 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.jumpToMatching(); },
11336 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11337 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "animate",
11338 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11339 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11340 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "selecttomatching",
11341 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-Shift-P", "Ctrl-Shift-P"),
11342 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.jumpToMatching(true); },
11343 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11344 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "animate",
11345 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11346 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11347 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "expandToMatching",
11348 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-Shift-M", "Ctrl-Shift-M"),
11349 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.jumpToMatching(true, true); },
11350 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11351 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "animate",
11352 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11353 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11354 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "passKeysToBrowser",
11355 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey(null, null),
11356 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function() {},
11357 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; passEvent: true,
11358 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11359 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11360 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "copy",
11361 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) {
11362 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; },
11363 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11364 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;},
11365 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;{
11366 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "cut",
11367 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) {
11368 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var range = editor.getSelectionRange();
11369 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; editor._emit("cut", range);
11370  
11371 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (!editor.selection.isEmpty()) {
11372 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; editor.session.remove(range);
11373 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; editor.clearSelection();
11374 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
11375 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; },
11376 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor",
11377 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach"
11378 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11379 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "paste",
11380 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor, args) {
11381 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; editor.$handlePaste(args);
11382 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; },
11383 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor"
11384 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11385 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "removeline",
11386 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-D", "Command-D"),
11387 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.removeLines(); },
11388 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor",
11389 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEachLine"
11390 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11391 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "duplicateSelection",
11392 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-Shift-D", "Command-Shift-D"),
11393 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.duplicateSelection(); },
11394 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor",
11395 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach"
11396 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11397 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "sortlines",
11398 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-Alt-S", "Command-Alt-S"),
11399 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.sortLines(); },
11400 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "selection",
11401 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEachLine"
11402 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11403 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "togglecomment",
11404 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-/", "Command-/"),
11405 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.toggleCommentLines(); },
11406 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEachLine",
11407 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "selectionPart"
11408 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11409 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "toggleBlockComment",
11410 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-Shift-/", "Command-Shift-/"),
11411 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.toggleBlockComment(); },
11412 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11413 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "selectionPart"
11414 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11415 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "modifyNumberUp",
11416 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-Shift-Up", "Alt-Shift-Up"),
11417 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.modifyNumber(1); },
11418 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor",
11419 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach"
11420 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11421 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "modifyNumberDown",
11422 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-Shift-Down", "Alt-Shift-Down"),
11423 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.modifyNumber(-1); },
11424 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor",
11425 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach"
11426 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11427 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "replace",
11428 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-H", "Command-Option-F"),
11429 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) {
11430 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; config.loadModule("ace/ext/searchbox", function(e) {e.Search(editor, true)});
11431 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
11432 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11433 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "undo",
11434 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-Z", "Command-Z"),
11435 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.undo(); }
11436 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11437 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "redo",
11438 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-Shift-Z|Ctrl-Y", "Command-Shift-Z|Command-Y"),
11439 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.redo(); }
11440 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11441 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "copylinesup",
11442 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Alt-Shift-Up", "Command-Option-Up"),
11443 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.copyLinesUp(); },
11444 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor"
11445 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11446 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "movelinesup",
11447 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Alt-Up", "Option-Up"),
11448 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.moveLinesUp(); },
11449 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor"
11450 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11451 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "copylinesdown",
11452 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Alt-Shift-Down", "Command-Option-Down"),
11453 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.copyLinesDown(); },
11454 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor"
11455 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11456 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "movelinesdown",
11457 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Alt-Down", "Option-Down"),
11458 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.moveLinesDown(); },
11459 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor"
11460 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11461 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "del",
11462 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Delete", "Delete|Ctrl-D|Shift-Delete"),
11463 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.remove("right"); },
11464 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11465 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor"
11466 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11467 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "backspace",
11468 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey(
11469 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; "Shift-Backspace|Backspace",
11470 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; "Ctrl-Backspace|Shift-Backspace|Backspace|Ctrl-H"
11471 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; ),
11472 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.remove("left"); },
11473 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11474 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor"
11475 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11476 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "cut_or_delete",
11477 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Shift-Delete", null),
11478 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) {
11479 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (editor.selection.isEmpty()) {
11480 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; editor.remove("left");
11481 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; } else {
11482 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return false;
11483 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
11484 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; },
11485 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11486 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor"
11487 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11488 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "removetolinestart",
11489 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Alt-Backspace", "Command-Backspace"),
11490 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.removeToLineStart(); },
11491 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11492 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor"
11493 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11494 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "removetolineend",
11495 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Alt-Delete", "Ctrl-K"),
11496 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.removeToLineEnd(); },
11497 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11498 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor"
11499 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11500 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "removewordleft",
11501 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-Backspace", "Alt-Backspace|Ctrl-Alt-Backspace"),
11502 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.removeWordLeft(); },
11503 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11504 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor"
11505 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11506 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "removewordright",
11507 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-Delete", "Alt-Delete"),
11508 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.removeWordRight(); },
11509 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11510 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor"
11511 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11512 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "outdent",
11513 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Shift-Tab", "Shift-Tab"),
11514 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.blockOutdent(); },
11515 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11516 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "selectionPart"
11517 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11518 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "indent",
11519 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Tab", "Tab"),
11520 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.indent(); },
11521 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11522 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "selectionPart"
11523 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11524 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "blockoutdent",
11525 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-[", "Ctrl-["),
11526 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.blockOutdent(); },
11527 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEachLine",
11528 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "selectionPart"
11529 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11530 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "blockindent",
11531 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-]", "Ctrl-]"),
11532 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.blockIndent(); },
11533 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEachLine",
11534 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "selectionPart"
11535 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11536 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "insertstring",
11537 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor, str) { editor.insert(str); },
11538 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11539 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor"
11540 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11541 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "inserttext",
11542 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor, args) {
11543 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; editor.insert(lang.stringRepeat(args.text || "", args.times || 1));
11544 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; },
11545 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11546 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor"
11547 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11548 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "splitline",
11549 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey(null, "Ctrl-O"),
11550 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.splitLine(); },
11551 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11552 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor"
11553 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11554 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "transposeletters",
11555 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-T", "Ctrl-T"),
11556 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.transposeLetters(); },
11557 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: function(editor) {editor.transposeSelections(1); },
11558 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor"
11559 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11560 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "touppercase",
11561 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-U", "Ctrl-U"),
11562 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.toUpperCase(); },
11563 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11564 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor"
11565 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11566 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "tolowercase",
11567 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-Shift-U", "Ctrl-Shift-U"),
11568 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) { editor.toLowerCase(); },
11569 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11570 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor"
11571 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11572 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "expandtoline",
11573 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey("Ctrl-Shift-L", "Command-Shift-L"),
11574 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) {
11575 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var range = editor.selection.getRange();
11576  
11577 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; range.start.column = range.end.column = 0;
11578 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; range.end.row++;
11579 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; editor.selection.setRange(range, false);
11580 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; },
11581 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11582 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "cursor",
11583 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11584 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11585 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "joinlines",
11586 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey(null, null),
11587 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) {
11588 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var isBackwards = editor.selection.isBackwards();
11589 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var selectionStart = isBackwards ? editor.selection.getSelectionLead() : editor.selection.getSelectionAnchor();
11590 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var selectionEnd = isBackwards ? editor.selection.getSelectionAnchor() : editor.selection.getSelectionLead();
11591 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var firstLineEndCol = editor.session.doc.getLine(selectionStart.row).length;
11592 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var selectedText = editor.session.doc.getTextRange(editor.selection.getRange());
11593 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var selectedCount = selectedText.replace(/\n\s*/, " ").length;
11594 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var insertLine = editor.session.doc.getLine(selectionStart.row);
11595  
11596 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; for (var i = selectionStart.row + 1; i <= selectionEnd.row + 1; i++) {
11597 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var curLine = lang.stringTrimLeft(lang.stringTrimRight(editor.session.doc.getLine(i)));
11598 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (curLine.length !== 0) {
11599 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; curLine = " " + curLine;
11600 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
11601 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; insertLine += curLine;
11602 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
11603  
11604 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (selectionEnd.row + 1 < (editor.session.doc.getLength() - 1)) {
11605 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; insertLine += editor.session.doc.getNewLineCharacter();
11606 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
11607  
11608 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; editor.clearSelection();
11609 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; editor.session.doc.replace(new Range(selectionStart.row, 0, selectionEnd.row + 2, 0), insertLine);
11610  
11611 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (selectedCount > 0) {
11612 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; editor.selection.moveCursorTo(selectionStart.row, selectionStart.column);
11613 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; editor.selection.selectTo(selectionStart.row, selectionStart.column + selectedCount);
11614 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; } else {
11615 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; firstLineEndCol = editor.session.doc.getLine(selectionStart.row).length > firstLineEndCol ? (firstLineEndCol + 1) : firstLineEndCol;
11616 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; editor.selection.moveCursorTo(selectionStart.row, firstLineEndCol);
11617 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
11618 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; },
11619 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; multiSelectAction: "forEach",
11620 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true
11621 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}, {
11622 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; name: "invertSelection",
11623 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; bindKey: bindKey(null, null),
11624 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; exec: function(editor) {
11625 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var endRow = editor.session.doc.getLength() - 1;
11626 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var endCol = editor.session.doc.getLine(endRow).length;
11627 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var ranges = editor.selection.rangeList.ranges;
11628 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var newRanges = [];
11629 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (ranges.length < 1) {
11630 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; ranges = [editor.selection.getRange()];
11631 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
11632  
11633 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; for (var i = 0; i < ranges.length; i++) {
11634 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (i == (ranges.length - 1)) {
11635 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (!(ranges[i].end.row === endRow && ranges[i].end.column === endCol)) {
11636 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; newRanges.push(new Range(ranges[i].end.row, ranges[i].end.column, endRow, endCol));
11637 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
11638 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
11639  
11640 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (i === 0) {
11641 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (!(ranges[i].start.row === 0 && ranges[i].start.column === 0)) {
11642 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; newRanges.push(new Range(0, 0, ranges[i].start.row, ranges[i].start.column));
11643 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
11644 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; } else {
11645 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; newRanges.push(new Range(ranges[i-1].end.row, ranges[i-1].end.column, ranges[i].start.row, ranges[i].start.column));
11646 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
11647 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
11648  
11649 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; editor.exitMultiSelectMode();
11650 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; editor.clearSelection();
11651  
11652 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; for(var i = 0; i < newRanges.length; i++) {
11653 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; editor.selection.addRange(newRanges[i], false);
11654 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
11655 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; },
11656 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; readOnly: true,
11657 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView: "none"
11658 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;}];
11659  
11660 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;});
11661  
11662 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;ace.define("ace/editor",["require","exports","module","ace/lib/fixoldbrowsers","ace/lib/oop","ace/lib/dom","ace/lib/lang","ace/lib/useragent","ace/keyboard/textinput","ace/mouse/mouse_handler","ace/mouse/fold_handler","ace/keyboard/keybinding","ace/edit_session","ace/search","ace/range","ace/lib/event_emitter","ace/commands/command_manager","ace/commands/default_commands","ace/config","ace/token_iterator"], function(require, exports, module) {
11663 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;"use strict";
11664  
11665 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;require("./lib/fixoldbrowsers");
11666  
11667 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;var oop = require("./lib/oop");
11668 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;var dom = require("./lib/dom");
11669 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;var lang = require("./lib/lang");
11670 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;var useragent = require("./lib/useragent");
11671 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;var TextInput = require("./keyboard/textinput").TextInput;
11672 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;var MouseHandler = require("./mouse/mouse_handler").MouseHandler;
11673 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;var FoldHandler = require("./mouse/fold_handler").FoldHandler;
11674 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;var KeyBinding = require("./keyboard/keybinding").KeyBinding;
11675 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;var EditSession = require("./edit_session").EditSession;
11676 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;var Search = require("./search").Search;
11677 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;var Range = require("./range").Range;
11678 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;var EventEmitter = require("./lib/event_emitter").EventEmitter;
11679 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;var CommandManager = require("./commands/command_manager").CommandManager;
11680 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;var defaultCommands = require("./commands/default_commands").commands;
11681 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;var config = require("./config");
11682 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;var TokenIterator = require("./token_iterator").TokenIterator;
11683 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;var Editor = function(renderer, session) {
11684 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var container = renderer.getContainerElement();
11685 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.container = container;
11686 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.renderer = renderer;
11687  
11688 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.commands = new CommandManager(useragent.isMac ? "mac" : "win", defaultCommands);
11689 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.textInput = new TextInput(renderer.getTextAreaContainer(), this);
11690 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.renderer.textarea = this.textInput.getElement();
11691 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.keyBinding = new KeyBinding(this);
11692 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.$mouseHandler = new MouseHandler(this);
11693 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; new FoldHandler(this);
11694  
11695 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.$blockScrolling = 0;
11696 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.$search = new Search().set({
11697 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; wrap: true
11698 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; });
11699  
11700 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.$historyTracker = this.$historyTracker.bind(this);
11701 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.commands.on("exec", this.$historyTracker);
11702  
11703 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.$initOperationListeners();
11704  
11705 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this._$emitInputEvent = lang.delayedCall(function() {
11706 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this._signal("input", {});
11707 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (this.session && this.session.bgTokenizer)
11708 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.session.bgTokenizer.scheduleStart();
11709 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }.bind(this));
11710  
11711 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.on("change", function(_, _self) {
11712 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; _self._$emitInputEvent.schedule(31);
11713 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; });
11714  
11715 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.setSession(session || new EditSession(""));
11716 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; config.resetOptions(this);
11717 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; config._signal("editor", this);
11718 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;};
11719  
11720 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;(function(){
11721  
11722 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; oop.implement(this, EventEmitter);
11723  
11724 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.$initOperationListeners = function() {
11725 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; function last(a) {return a[a.length - 1]}
11726  
11727 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.selections = [];
11728 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.commands.on("exec", this.startOperation.bind(this), true);
11729 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.commands.on("afterExec", this.endOperation.bind(this), true);
11730  
11731 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.$opResetTimer = lang.delayedCall(this.endOperation.bind(this));
11732  
11733 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.on("change", function() {
11734 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.curOp || this.startOperation();
11735 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.curOp.docChanged = true;
11736 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }.bind(this), true);
11737  
11738 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.on("changeSelection", function() {
11739 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.curOp || this.startOperation();
11740 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.curOp.selectionChanged = true;
11741 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }.bind(this), true);
11742 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; };
11743  
11744 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.curOp = null;
11745 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.prevOp = {};
11746 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.startOperation = function(commadEvent) {
11747 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (this.curOp) {
11748 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (!commadEvent || this.curOp.command)
11749 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return;
11750 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.prevOp = this.curOp;
11751 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
11752 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (!commadEvent) {
11753 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.previousCommand = null;
11754 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; commadEvent = {};
11755 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; }
11756  
11757 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.$opResetTimer.schedule();
11758 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.curOp = {
11759 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; command: commadEvent.command || {},
11760 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; args: commadEvent.args,
11761 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollTop: this.renderer.scrollTop
11762 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; };
11763 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (this.curOp.command.name && this.curOp.command.scrollIntoView !== undefined)
11764 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.$blockScrolling++;
11765 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; };
11766  
11767 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.endOperation = function(e) {
11768 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (this.curOp) {
11769 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (e && e.returnValue === false)
11770 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; return this.curOp = null;
11771 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this._signal("beforeEndOperation");
11772 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var command = this.curOp.command;
11773 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (command.name && this.$blockScrolling > 0)
11774 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.$blockScrolling--;
11775 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var scrollIntoView = command && command.scrollIntoView;
11776 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (scrollIntoView) {
11777 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; switch (scrollIntoView) {
11778 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; case "center-animate":
11779 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; scrollIntoView = "animate";
11780 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; case "center":
11781 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.renderer.scrollCursorIntoView(null, 0.5);
11782 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; break;
11783 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; case "animate":
11784 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; case "cursor":
11785 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; this.renderer.scrollCursorIntoView();
11786 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; break;
11787 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; case "selectionPart":
11788 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var range = this.selection.getRange();
11789 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; var config = this.renderer.layerConfig;
11790 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6; if (range.start.row >= config.lastRow || range.end.row <= config.firstRow) {
11791 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.renderer.scrollSelectionIntoView(this.selection.anchor, this.selection.lead);
11792 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { }
11793 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { break;
11794 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { default:
11795 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { break;
11796 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { }
11797 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { if (scrollIntoView == "animate")
11798 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.renderer.animateScrolling(this.curOp.scrollTop);
11799 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { }
11800  
11801 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.prevOp = this.curOp;
11802 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.curOp = null;
11803 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { }
11804 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { };
11805 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.$mergeableCommands = ["backspace", "del", "insertstring"];
11806 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.$historyTracker = function(e) {
11807 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { if (!this.$mergeUndoDeltas)
11808 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { return;
11809  
11810 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { var prev = this.prevOp;
11811 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { var mergeableCommands = this.$mergeableCommands;
11812 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { var shouldMerge = prev.command && (e.command.name == prev.command.name);
11813 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { if (e.command.name == "insertstring") {
11814 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { var text = e.args;
11815 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { if (this.mergeNextCommand === undefined)
11816 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.mergeNextCommand = true;
11817  
11818 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { shouldMerge = shouldMerge
11819 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { && this.mergeNextCommand // previous command allows to coalesce with
11820 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { && (!/\s/.test(text) || /\s/.test(prev.args)); // previous insertion was of same type
11821  
11822 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.mergeNextCommand = true;
11823 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { } else {
11824 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { shouldMerge = shouldMerge
11825 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { && mergeableCommands.indexOf(e.command.name) !== -1; // the command is mergeable
11826 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { }
11827  
11828 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { if (
11829 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.$mergeUndoDeltas != "always"
11830 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { && Date.now() - this.sequenceStartTime > 2000
11831 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { ) {
11832 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { shouldMerge = false; // the sequence is too long
11833 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { }
11834  
11835 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { if (shouldMerge)
11836 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.session.mergeUndoDeltas = true;
11837 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { else if (mergeableCommands.indexOf(e.command.name) !== -1)
11838 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.sequenceStartTime = Date.now();
11839 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { };
11840 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.setKeyboardHandler = function(keyboardHandler, cb) {
11841 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { if (keyboardHandler && typeof keyboardHandler === "string") {
11842 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.$keybindingId = keyboardHandler;
11843 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { var _self = this;
11844 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { config.loadModule(["keybinding", keyboardHandler], function(module) {
11845 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { if (_self.$keybindingId == keyboardHandler)
11846 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { _self.keyBinding.setKeyboardHandler(module && module.handler);
11847 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { cb && cb();
11848 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { });
11849 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { } else {
11850 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.$keybindingId = null;
11851 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.keyBinding.setKeyboardHandler(keyboardHandler);
11852 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { cb && cb();
11853 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { }
11854 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { };
11855 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.getKeyboardHandler = function() {
11856 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { return this.keyBinding.getKeyboardHandler();
11857 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { };
11858 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.setSession = function(session) {
11859 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { if (this.session == session)
11860 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { return;
11861 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { if (this.curOp) this.endOperation();
11862 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.curOp = {};
11863  
11864 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { var oldSession = this.session;
11865 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { if (oldSession) {
11866 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.session.off("change", this.$onDocumentChange);
11867 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.session.off("changeMode", this.$onChangeMode);
11868 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.session.off("tokenizerUpdate", this.$onTokenizerUpdate);
11869 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.session.off("changeTabSize", this.$onChangeTabSize);
11870 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.session.off("changeWrapLimit", this.$onChangeWrapLimit);
11871 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.session.off("changeWrapMode", this.$onChangeWrapMode);
11872 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.session.off("changeFold", this.$onChangeFold);
11873 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.session.off("changeFrontMarker", this.$onChangeFrontMarker);
11874 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.session.off("changeBackMarker", this.$onChangeBackMarker);
11875 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.session.off("changeBreakpoint", this.$onChangeBreakpoint);
11876 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.session.off("changeAnnotation", this.$onChangeAnnotation);
11877 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.session.off("changeOverwrite", this.$onCursorChange);
11878 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.session.off("changeScrollTop", this.$onScrollTopChange);
11879 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.session.off("changeScrollLeft", this.$onScrollLeftChange);
11880  
11881 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { var selection = this.session.getSelection();
11882 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { selection.off("changeCursor", this.$onCursorChange);
11883 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { selection.off("changeSelection", this.$onSelectionChange);
11884 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { }
11885  
11886 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.session = session;
11887 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { if (session) {
11888 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.$onDocumentChange = this.onDocumentChange.bind(this);
11889 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { session.on("change", this.$onDocumentChange);
11890 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.renderer.setSession(session);
11891  
11892 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.$onChangeMode = this.onChangeMode.bind(this);
11893 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { session.on("changeMode", this.$onChangeMode);
11894  
11895 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.$onTokenizerUpdate = this.onTokenizerUpdate.bind(this);
11896 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { session.on("tokenizerUpdate", this.$onTokenizerUpdate);
11897  
11898 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.$onChangeTabSize = this.renderer.onChangeTabSize.bind(this.renderer);
11899 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { session.on("changeTabSize", this.$onChangeTabSize);
11900  
11901 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.$onChangeWrapLimit = this.onChangeWrapLimit.bind(this);
11902 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { session.on("changeWrapLimit", this.$onChangeWrapLimit);
11903  
11904 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.$onChangeWrapMode = this.onChangeWrapMode.bind(this);
11905 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { session.on("changeWrapMode", this.$onChangeWrapMode);
11906  
11907 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.$onChangeFold = this.onChangeFold.bind(this);
11908 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { session.on("changeFold", this.$onChangeFold);
11909  
11910 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.$onChangeFrontMarker = this.onChangeFrontMarker.bind(this);
11911 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.session.on("changeFrontMarker", this.$onChangeFrontMarker);
11912  
11913 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.$onChangeBackMarker = this.onChangeBackMarker.bind(this);
11914 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.session.on("changeBackMarker", this.$onChangeBackMarker);
11915  
11916 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.$onChangeBreakpoint = this.onChangeBreakpoint.bind(this);
11917 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.session.on("changeBreakpoint", this.$onChangeBreakpoint);
11918  
11919 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.$onChangeAnnotation = this.onChangeAnnotation.bind(this);
11920 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.session.on("changeAnnotation", this.$onChangeAnnotation);
11921  
11922 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.$onCursorChange = this.onCursorChange.bind(this);
11923 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.session.on("changeOverwrite", this.$onCursorChange);
11924  
11925 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.$onScrollTopChange = this.onScrollTopChange.bind(this);
11926 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.session.on("changeScrollTop", this.$onScrollTopChange);
11927  
11928 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.$onScrollLeftChange = this.onScrollLeftChange.bind(this);
11929 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.session.on("changeScrollLeft", this.$onScrollLeftChange);
11930  
11931 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.selection = session.getSelection();
11932 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.selection.on("changeCursor", this.$onCursorChange);
11933  
11934 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.$onSelectionChange = this.onSelectionChange.bind(this);
11935 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.selection.on("changeSelection", this.$onSelectionChange);
11936  
11937 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.onChangeMode();
11938  
11939 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.$blockScrolling += 1;
11940 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.onCursorChange();
11941 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.$blockScrolling -= 1;
11942  
11943 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.onScrollTopChange();
11944 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.onScrollLeftChange();
11945 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.onSelectionChange();
11946 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.onChangeFrontMarker();
11947 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.onChangeBackMarker();
11948 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.onChangeBreakpoint();
11949 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.onChangeAnnotation();
11950 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.session.getUseWrapMode() && this.renderer.adjustWrapLimit();
11951 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.renderer.updateFull();
11952 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { } else {
11953 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.selection = null;
11954 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.renderer.setSession(session);
11955 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { }
11956  
11957 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this._signal("changeSession", {
11958 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { session: session,
11959 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { oldSession: oldSession
11960 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { });
11961  
11962 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.curOp = null;
11963  
11964 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { oldSession && oldSession._signal("changeEditor", {oldEditor: this});
11965 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { session && session._signal("changeEditor", {editor: this});
11966 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { };
11967 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.getSession = function() {
11968 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { return this.session;
11969 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { };
11970 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.setValue = function(val, cursorPos) {
11971 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.session.doc.setValue(val);
11972  
11973 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { if (!cursorPos)
11974 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.selectAll();
11975 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { else if (cursorPos == 1)
11976 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.navigateFileEnd();
11977 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { else if (cursorPos == -1)
11978 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.navigateFileStart();
11979  
11980 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { return val;
11981 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { };
11982 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.getValue = function() {
11983 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { return this.session.getValue();
11984 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { };
11985 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.getSelection = function() {
11986 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { return this.selection;
11987 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { };
11988 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.resize = function(force) {
11989 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.renderer.onResize(force);
11990 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { };
11991 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.setTheme = function(theme, cb) {
11992 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.renderer.setTheme(theme, cb);
11993 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { };
11994 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.getTheme = function() {
11995 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { return this.renderer.getTheme();
11996 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { };
11997 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.setStyle = function(style) {
11998 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.renderer.setStyle(style);
11999 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { };
12000 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.unsetStyle = function(style) {
12001 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.renderer.unsetStyle(style);
12002 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { };
12003 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.getFontSize = function () {
12004 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { return this.getOption("fontSize") ||
12005 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { dom.computedStyle(this.container, "fontSize");
12006 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { };
12007 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.setFontSize = function(size) {
12008 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.setOption("fontSize", size);
12009 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { };
12010  
12011 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.$highlightBrackets = function() {
12012 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { if (this.session.$bracketHighlight) {
12013 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.session.removeMarker(this.session.$bracketHighlight);
12014 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.session.$bracketHighlight = null;
12015 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { }
12016  
12017 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { if (this.$highlightPending) {
12018 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { return;
12019 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { }
12020 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { var self = this;
12021 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.$highlightPending = true;
12022 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { setTimeout(function() {
12023 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { self.$highlightPending = false;
12024 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { var session = self.session;
12025 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { if (!session || !session.bgTokenizer) return;
12026 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { var pos = session.findMatchingBracket(self.getCursorPosition());
12027 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { if (pos) {
12028 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { var range = new Range(pos.row, pos.column, pos.row, pos.column + 1);
12029 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { } else if (session.$mode.getMatching) {
12030 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { var range = session.$mode.getMatching(self.session);
12031 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { }
12032 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { if (range)
12033 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { session.$bracketHighlight = session.addMarker(range, "ace_bracket", "text");
12034 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { }, 50);
12035 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { };
12036 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.$highlightTags = function() {
12037 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { if (this.$highlightTagPending)
12038 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { return;
12039 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { var self = this;
12040 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { this.$highlightTagPending = true;
12041 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { setTimeout(function() {
12042 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { self.$highlightTagPending = false;
12043  
12044 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { var session = self.session;
12045 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { if (!session || !session.bgTokenizer) return;
12046  
12047 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { var pos = self.getCursorPosition();
12048 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { var iterator = new TokenIterator(self.session, pos.row, pos.column);
12049 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { var token = iterator.getCurrentToken();
12050  
12051 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { if (!token || !/\b(?:tag-open|tag-name)/.test(token.type)) {
12052 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { session.removeMarker(session.$tagHighlight);
12053 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { session.$tagHighlight = null;
12054 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { return;
12055 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { }
12056  
12057 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { if (token.type.indexOf("tag-open") != -1) {
12058 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { token = iterator.stepForward();
12059 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { if (!token)
12060 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { return;
12061 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { }
12062  
12063 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { var tag = token.value;
12064 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { var depth = 0;
12065 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { var prevToken = iterator.stepBackward();
12066  
12067 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) { if (prevToken.value == '<'){
12068 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){ do {
12069 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){ prevToken = token;
12070 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){ token = iterator.stepForward();
12071  
12072 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){ if (token && token.value === tag && token.type.indexOf('tag-name') !== -1) {
12073 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){ if (prevToken.value === '<'){
12074 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){ depth++;
12075 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){ } else if (prevToken.value === ''){
12076 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){ depth--;
12077 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){ }
12078 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){ }
12079  
12080 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){ } while (token && depth >= 0);
12081 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){ } else {
12082 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){ do {
12083 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){ token = prevToken;
12084 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){ prevToken = iterator.stepBackward();
12085  
12086 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){ if (token && token.value === tag && token.type.indexOf('tag-name') !== -1) {
12087 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){ if (prevToken.value === '<') {
12088 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){ depth++;
12089 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){ } else if (prevToken.value === '</') {
12090 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){ depth--;
12091 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){ }
12092 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){ }
12093 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){ } while (prevToken && depth <= 0);
12094 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); iterator.stepForward();
12095 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); }
12096  
12097 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); if (!token) {
12098 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); session.removeMarker(session.$tagHighlight);
12099 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); session.$tagHighlight = null;
12100 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); return;
12101 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); }
12102  
12103 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); var row = iterator.getCurrentTokenRow();
12104 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); var column = iterator.getCurrentTokenColumn();
12105 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); var range = new Range(row, column, row, column+token.value.length);
12106 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); var sbm = session.$backMarkers[session.$tagHighlight];
12107 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); if (session.$tagHighlight && sbm != undefined && range.compareRange(sbm.range) !== 0) {
12108 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); session.removeMarker(session.$tagHighlight);
12109 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); session.$tagHighlight = null;
12110 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); }
12111  
12112 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); if (range && !session.$tagHighlight)
12113 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); session.$tagHighlight = session.addMarker(range, "ace_bracket", "text");
12114 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); }, 50);
12115 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); };
12116 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this.focus = function() {
12117 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); var _self = this;
12118 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); setTimeout(function() {
12119 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); _self.textInput.focus();
12120 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); });
12121 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this.textInput.focus();
12122 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); };
12123 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this.isFocused = function() {
12124 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); return this.textInput.isFocused();
12125 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); };
12126 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this.blur = function() {
12127 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this.textInput.blur();
12128 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); };
12129 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this.onFocus = function(e) {
12130 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); if (this.$isFocused)
12131 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); return;
12132 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this.$isFocused = true;
12133 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this.renderer.showCursor();
12134 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this.renderer.visualizeFocus();
12135 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this._emit("focus", e);
12136 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); };
12137 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this.onBlur = function(e) {
12138 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); if (!this.$isFocused)
12139 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); return;
12140 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this.$isFocused = false;
12141 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this.renderer.hideCursor();
12142 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this.renderer.visualizeBlur();
12143 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this._emit("blur", e);
12144 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); };
12145  
12146 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this.$cursorChange = function() {
12147 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this.renderer.updateCursor();
12148 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); };
12149 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this.onDocumentChange = function(delta) {
12150 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); var wrap = this.session.$useWrapMode;
12151 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); var lastRow = (delta.start.row == delta.end.row ? delta.end.row : Infinity);
12152 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this.renderer.updateLines(delta.start.row, lastRow, wrap);
12153  
12154 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this._signal("change", delta);
12155 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this.$cursorChange();
12156 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this.$updateHighlightActiveLine();
12157 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); };
12158  
12159 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this.onTokenizerUpdate = function(e) {
12160 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); var rows = e.data;
12161 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this.renderer.updateLines(rows.first, rows.last);
12162 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); };
12163  
12164  
12165 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this.onScrollTopChange = function() {
12166 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this.renderer.scrollToY(this.session.getScrollTop());
12167 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); };
12168  
12169 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this.onScrollLeftChange = function() {
12170 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this.renderer.scrollToX(this.session.getScrollLeft());
12171 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); };
12172 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this.onCursorChange = function() {
12173 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this.$cursorChange();
12174  
12175 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); if (!this.$blockScrolling) {
12176 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); config.warn("Automatically scrolling cursor into view after selection change",
12177 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); "this will be disabled in the next version",
12178 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); "set editor.$blockScrolling = Infinity to disable this message"
12179 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); );
12180 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this.renderer.scrollCursorIntoView();
12181 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); }
12182  
12183 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this.$highlightBrackets();
12184 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this.$highlightTags();
12185 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this.$updateHighlightActiveLine();
12186 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this._signal("changeSelection");
12187 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); };
12188  
12189 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this.$updateHighlightActiveLine = function() {
12190 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); var session = this.getSession();
12191  
12192 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); var highlight;
12193 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); if (this.$highlightActiveLine) {
12194 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); if ((this.$selectionStyle != "line" || !this.selection.isMultiLine()))
12195 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); highlight = this.getCursorPosition();
12196 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); if (this.renderer.$maxLines && this.session.getLength() === 1 && !(this.renderer.$minLines > 1))
12197 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); highlight = false;
12198 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); }
12199  
12200 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); if (session.$highlightLineMarker && !highlight) {
12201 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); session.removeMarker(session.$highlightLineMarker.id);
12202 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); session.$highlightLineMarker = null;
12203 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); } else if (!session.$highlightLineMarker && highlight) {
12204 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); var range = new Range(highlight.row, highlight.column, highlight.row, Infinity);
12205 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); range.id = session.addMarker(range, "ace_active-line", "screenLine");
12206 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); session.$highlightLineMarker = range;
12207 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); } else if (highlight) {
12208 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); session.$highlightLineMarker.start.row = highlight.row;
12209 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); session.$highlightLineMarker.end.row = highlight.row;
12210 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); session.$highlightLineMarker.start.column = highlight.column;
12211 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); session._signal("changeBackMarker");
12212 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); }
12213 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); };
12214  
12215 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this.onSelectionChange = function(e) {
12216 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); var session = this.session;
12217  
12218 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); if (session.$selectionMarker) {
12219 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); session.removeMarker(session.$selectionMarker);
12220 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); }
12221 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); session.$selectionMarker = null;
12222  
12223 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); if (!this.selection.isEmpty()) {
12224 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); var range = this.selection.getRange();
12225 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); var style = this.getSelectionStyle();
12226 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); session.$selectionMarker = session.addMarker(range, "ace_selection", style);
12227 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); } else {
12228 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this.$updateHighlightActiveLine();
12229 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); }
12230  
12231 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); var re = this.$highlightSelectedWord && this.$getSelectionHighLightRegexp();
12232 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this.session.highlight(re);
12233  
12234 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this._signal("changeSelection");
12235 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); };
12236  
12237 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); this.$getSelectionHighLightRegexp = function() {
12238 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); var session = this.session;
12239  
12240 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); var selection = this.getSelectionRange();
12241 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); if (selection.isEmpty() || selection.isMultiLine())
12242 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); return;
12243  
12244 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); var startOuter = selection.start.column - 1;
12245 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); var endOuter = selection.end.column + 1;
12246 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); var line = session.getLine(selection.start.row);
12247 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); var lineCols = line.length;
12248 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); var needle = line.substring(Math.max(startOuter, 0),
12249 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); Math.min(endOuter, lineCols));
12250 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); if ((startOuter >= 0 && /^[\w\d]/.test(needle)) ||
12251 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0); (endOuter <= lineCols && /[\w\d]$/.test(needle)))
12252 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / return;
12253  
12254 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / needle = line.substring(selection.start.column, selection.end.column);
12255 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / if (!/^[\w\d]+$/.test(needle))
12256 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / return;
12257  
12258 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / var re = this.$search.$assembleRegExp({
12259 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / wholeWord: true,
12260 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / caseSensitive: true,
12261 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / needle: needle
12262 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / });
12263  
12264 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / return re;
12265 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / };
12266  
12267  
12268 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / this.onChangeFrontMarker = function() {
12269 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / this.renderer.updateFrontMarkers();
12270 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / };
12271  
12272 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / this.onChangeBackMarker = function() {
12273 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / this.renderer.updateBackMarkers();
12274 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / };
12275  
12276  
12277 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / this.onChangeBreakpoint = function() {
12278 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / this.renderer.updateBreakpoints();
12279 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / };
12280  
12281 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / this.onChangeAnnotation = function() {
12282 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / this.renderer.setAnnotations(this.session.getAnnotations());
12283 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / };
12284  
12285  
12286 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / this.onChangeMode = function(e) {
12287 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / this.renderer.updateText();
12288 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / this._emit("changeMode", e);
12289 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / };
12290  
12291  
12292 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / this.onChangeWrapLimit = function() {
12293 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / this.renderer.updateFull();
12294 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / };
12295  
12296 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / this.onChangeWrapMode = function() {
12297 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / this.renderer.onResize(true);
12298 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / };
12299  
12300  
12301 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / this.onChangeFold = function() {
12302 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / this.$updateHighlightActiveLine();
12303 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / this.renderer.updateFull();
12304 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / };
12305 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / this.getSelectedText = function() {
12306 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / return this.session.getTextRange(this.getSelectionRange());
12307 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / };
12308 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / this.getCopyText = function() {
12309 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / var text = this.getSelectedText();
12310 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / this._signal("copy", text);
12311 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / return text;
12312 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / };
12313 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / this.onCopy = function() {
12314 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / this.commands.exec("copy", this);
12315 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / };
12316 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / this.onCut = function() {
12317 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / this.commands.exec("cut", this);
12318 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / };
12319 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / this.onPaste = function(text, event) {
12320 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / var e = {text: text, event: event};
12321 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / this.commands.exec("paste", this, e);
12322 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / };
12323  
12324 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / this.$handlePaste = function(e) {
12325 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / if (typeof e == "string")
12326 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / e = {text: e};
12327 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / this._signal("paste", e);
12328 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / var text = e.text;
12329 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / if (!this.inMultiSelectMode || this.inVirtualSelectionMode) {
12330 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / this.insert(text);
12331 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / } else {
12332 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / var lines = text.split(/\r\n|\r|\n/);
12333 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / var ranges = this.selection.rangeList.ranges;
12334  
12335 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && / if (lines.length > ranges.length || lines.length < 2 || !lines[1])
12336 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) return this.commands.exec("insertstring", this, text);
12337  
12338 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) for (var i = ranges.length; i--;) {
12339 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) var range = ranges[i];
12340 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) if (!range.isEmpty())
12341 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.session.remove(range);
12342  
12343 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.session.insert(range.start, lines[i]);
12344 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) }
12345 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) }
12346 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12347  
12348 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.execCommand = function(command, args) {
12349 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) return this.commands.exec(command, this, args);
12350 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12351 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.insert = function(text, pasted) {
12352 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) var session = this.session;
12353 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) var mode = session.getMode();
12354 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) var cursor = this.getCursorPosition();
12355  
12356 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) if (this.getBehavioursEnabled() && !pasted) {
12357 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) var transform = mode.transformAction(session.getState(cursor.row), 'insertion', this, session, text);
12358 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) if (transform) {
12359 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) if (text !== transform.text) {
12360 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.session.mergeUndoDeltas = false;
12361 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.$mergeNextCommand = false;
12362 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) }
12363 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) text = transform.text;
12364  
12365 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) }
12366 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) }
12367  
12368 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) if (text == "\t")
12369 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) text = this.session.getTabString();
12370 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) if (!this.selection.isEmpty()) {
12371 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) var range = this.getSelectionRange();
12372 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) cursor = this.session.remove(range);
12373 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.clearSelection();
12374 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) }
12375 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) else if (this.session.getOverwrite()) {
12376 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) var range = new Range.fromPoints(cursor, cursor);
12377 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) range.end.column += text.length;
12378 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.session.remove(range);
12379 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) }
12380  
12381 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) if (text == "\n" || text == "\r\n") {
12382 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) var line = session.getLine(cursor.row);
12383 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) if (cursor.column > line.search(/\S|$/)) {
12384 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) var d = line.substr(cursor.column).search(/\S|$/);
12385 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) session.doc.removeInLine(cursor.row, cursor.column, cursor.column + d);
12386 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) }
12387 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) }
12388 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.clearSelection();
12389  
12390 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) var start = cursor.column;
12391 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) var lineState = session.getState(cursor.row);
12392 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) var line = session.getLine(cursor.row);
12393 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) var shouldOutdent = mode.checkOutdent(lineState, line, text);
12394 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) var end = session.insert(cursor, text);
12395  
12396 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) if (transform && transform.selection) {
12397 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) if (transform.selection.length == 2) { // Transform relative to the current column
12398 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.selection.setSelectionRange(
12399 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) new Range(cursor.row, start + transform.selection[0],
12400 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) cursor.row, start + transform.selection[1]));
12401 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) } else { // Transform relative to the current row.
12402 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.selection.setSelectionRange(
12403 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) new Range(cursor.row + transform.selection[0],
12404 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) transform.selection[1],
12405 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) cursor.row + transform.selection[2],
12406 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) transform.selection[3]));
12407 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) }
12408 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) }
12409  
12410 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) if (session.getDocument().isNewLine(text)) {
12411 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) var lineIndent = mode.getNextLineIndent(lineState, line.slice(0, cursor.column), session.getTabString());
12412  
12413 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) session.insert({row: cursor.row+1, column: 0}, lineIndent);
12414 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) }
12415 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) if (shouldOutdent)
12416 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) mode.autoOutdent(lineState, session, cursor.row);
12417 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12418  
12419 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.onTextInput = function(text) {
12420 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.keyBinding.onTextInput(text);
12421 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12422  
12423 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.onCommandKey = function(e, hashId, keyCode) {
12424 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.keyBinding.onCommandKey(e, hashId, keyCode);
12425 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12426 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.setOverwrite = function(overwrite) {
12427 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.session.setOverwrite(overwrite);
12428 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12429 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.getOverwrite = function() {
12430 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) return this.session.getOverwrite();
12431 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12432 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.toggleOverwrite = function() {
12433 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.session.toggleOverwrite();
12434 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12435 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.setScrollSpeed = function(speed) {
12436 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.setOption("scrollSpeed", speed);
12437 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12438 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.getScrollSpeed = function() {
12439 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) return this.getOption("scrollSpeed");
12440 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12441 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.setDragDelay = function(dragDelay) {
12442 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.setOption("dragDelay", dragDelay);
12443 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12444 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.getDragDelay = function() {
12445 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) return this.getOption("dragDelay");
12446 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12447 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.setSelectionStyle = function(val) {
12448 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.setOption("selectionStyle", val);
12449 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12450 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.getSelectionStyle = function() {
12451 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) return this.getOption("selectionStyle");
12452 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12453 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.setHighlightActiveLine = function(shouldHighlight) {
12454 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.setOption("highlightActiveLine", shouldHighlight);
12455 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12456 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.getHighlightActiveLine = function() {
12457 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) return this.getOption("highlightActiveLine");
12458 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12459 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.setHighlightGutterLine = function(shouldHighlight) {
12460 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.setOption("highlightGutterLine", shouldHighlight);
12461 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12462  
12463 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.getHighlightGutterLine = function() {
12464 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) return this.getOption("highlightGutterLine");
12465 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12466 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.setHighlightSelectedWord = function(shouldHighlight) {
12467 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.setOption("highlightSelectedWord", shouldHighlight);
12468 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12469 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.getHighlightSelectedWord = function() {
12470 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) return this.$highlightSelectedWord;
12471 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12472  
12473 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.setAnimatedScroll = function(shouldAnimate){
12474 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.renderer.setAnimatedScroll(shouldAnimate);
12475 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12476  
12477 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.getAnimatedScroll = function(){
12478 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) return this.renderer.getAnimatedScroll();
12479 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12480 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.setShowInvisibles = function(showInvisibles) {
12481 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.renderer.setShowInvisibles(showInvisibles);
12482 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12483 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.getShowInvisibles = function() {
12484 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) return this.renderer.getShowInvisibles();
12485 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12486  
12487 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.setDisplayIndentGuides = function(display) {
12488 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.renderer.setDisplayIndentGuides(display);
12489 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12490  
12491 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.getDisplayIndentGuides = function() {
12492 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) return this.renderer.getDisplayIndentGuides();
12493 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12494 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.setShowPrintMargin = function(showPrintMargin) {
12495 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.renderer.setShowPrintMargin(showPrintMargin);
12496 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12497 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.getShowPrintMargin = function() {
12498 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) return this.renderer.getShowPrintMargin();
12499 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12500 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.setPrintMarginColumn = function(showPrintMargin) {
12501 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.renderer.setPrintMarginColumn(showPrintMargin);
12502 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12503 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.getPrintMarginColumn = function() {
12504 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) return this.renderer.getPrintMarginColumn();
12505 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12506 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.setReadOnly = function(readOnly) {
12507 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.setOption("readOnly", readOnly);
12508 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12509 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.getReadOnly = function() {
12510 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) return this.getOption("readOnly");
12511 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12512 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.setBehavioursEnabled = function (enabled) {
12513 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.setOption("behavioursEnabled", enabled);
12514 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12515 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.getBehavioursEnabled = function () {
12516 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) return this.getOption("behavioursEnabled");
12517 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12518 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.setWrapBehavioursEnabled = function (enabled) {
12519 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.setOption("wrapBehavioursEnabled", enabled);
12520 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12521 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.getWrapBehavioursEnabled = function () {
12522 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) return this.getOption("wrapBehavioursEnabled");
12523 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12524 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.setShowFoldWidgets = function(show) {
12525 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.setOption("showFoldWidgets", show);
12526  
12527 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12528 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.getShowFoldWidgets = function() {
12529 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) return this.getOption("showFoldWidgets");
12530 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12531  
12532 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.setFadeFoldWidgets = function(fade) {
12533 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.setOption("fadeFoldWidgets", fade);
12534 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12535  
12536 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.getFadeFoldWidgets = function() {
12537 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) return this.getOption("fadeFoldWidgets");
12538 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12539 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.remove = function(dir) {
12540 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) if (this.selection.isEmpty()){
12541 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) if (dir == "left")
12542 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.selection.selectLeft();
12543 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) else
12544 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.selection.selectRight();
12545 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) }
12546  
12547 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) var range = this.getSelectionRange();
12548 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) if (this.getBehavioursEnabled()) {
12549 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) var session = this.session;
12550 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) var state = session.getState(range.start.row);
12551 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) var new_range = session.getMode().transformAction(state, 'deletion', this, session, range);
12552  
12553 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) if (range.end.column === 0) {
12554 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) var text = session.getTextRange(range);
12555 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) if (text[text.length - 1] == "\n") {
12556 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) var line = session.getLine(range.end.row);
12557 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) if (/^\s+$/.test(line)) {
12558 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) range.end.column = line.length;
12559 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) }
12560 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) }
12561 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) }
12562 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) if (new_range)
12563 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) range = new_range;
12564 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) }
12565  
12566 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.session.remove(range);
12567 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.clearSelection();
12568 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12569 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.removeWordRight = function() {
12570 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) if (this.selection.isEmpty())
12571 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.selection.selectWordRight();
12572  
12573 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.session.remove(this.getSelectionRange());
12574 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.clearSelection();
12575 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12576 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.removeWordLeft = function() {
12577 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) if (this.selection.isEmpty())
12578 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.selection.selectWordLeft();
12579  
12580 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.session.remove(this.getSelectionRange());
12581 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.clearSelection();
12582 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12583 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.removeToLineStart = function() {
12584 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) if (this.selection.isEmpty())
12585 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.selection.selectLineStart();
12586  
12587 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.session.remove(this.getSelectionRange());
12588 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.clearSelection();
12589 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12590 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.removeToLineEnd = function() {
12591 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) if (this.selection.isEmpty())
12592 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.selection.selectLineEnd();
12593  
12594 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) var range = this.getSelectionRange();
12595 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) if (range.start.column == range.end.column && range.start.row == range.end.row) {
12596 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) range.end.column = 0;
12597 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) range.end.row++;
12598 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) }
12599  
12600 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.session.remove(range);
12601 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.clearSelection();
12602 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12603 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.splitLine = function() {
12604 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) if (!this.selection.isEmpty()) {
12605 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.session.remove(this.getSelectionRange());
12606 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.clearSelection();
12607 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) }
12608  
12609 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) var cursor = this.getCursorPosition();
12610 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.insert("\n");
12611 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.moveCursorToPosition(cursor);
12612 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) };
12613 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) this.transposeLetters = function() {
12614 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) if (!this.selection.isEmpty()) {
12615 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) return;
12616 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) }
12617  
12618 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) var cursor = this.getCursorPosition();
12619 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) var column = cursor.column;
12620 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) if (column === 0)
12621 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) return;
12622  
12623 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) var line = this.session.getLine(cursor.row);
12624 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) var swap, range;
12625 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1]) if (column < line.length) {
12626 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) { swap = line.charAt(column) + line.charAt(column-1);
12627 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) { range = new Range(cursor.row, column-1, cursor.row, column+1);
12628 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) { }
12629 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) { else {
12630 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) { swap = line.charAt(column-1) + line.charAt(column-2);
12631 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) { range = new Range(cursor.row, column-2, cursor.row, column);
12632 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) { }
12633 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) { this.session.replace(range, swap);
12634 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) { };
12635 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) { this.toLowerCase = function() {
12636 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) { var originalRange = this.getSelectionRange();
12637 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) { if (this.selection.isEmpty()) {
12638 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) { this.selection.selectWord();
12639 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) { }
12640  
12641 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) { var range = this.getSelectionRange();
12642 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) { var text = this.session.getTextRange(range);
12643 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) { this.session.replace(range, text.toLowerCase());
12644 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) { this.selection.setSelectionRange(originalRange);
12645 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) { };
12646 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) { this.toUpperCase = function() {
12647 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) { var originalRange = this.getSelectionRange();
12648 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) { if (this.selection.isEmpty()) {
12649 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) { this.selection.selectWord();
12650 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) { }
12651  
12652 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) { var range = this.getSelectionRange();
12653 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) { var text = this.session.getTextRange(range);
12654 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) { this.session.replace(range, text.toUpperCase());
12655 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) { this.selection.setSelectionRange(originalRange);
12656 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) { };
12657 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) { this.indent = function() {
12658 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) { var session = this.session;
12659 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) { var range = this.getSelectionRange();
12660  
12661 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) { if (range.start.row < range.end.row) {
12662 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) { var rows = this.$getSelectedRows();
12663 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) { session.indentRows(rows.first, rows.last, "\t");
12664 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) { return;
12665 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) { } else if (range.start.column < range.end.column) {
12666 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { var text = session.getTextRange(range);
12667 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { if (!/^\s+$/.test(text)) {
12668 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { var rows = this.$getSelectedRows();
12669 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { session.indentRows(rows.first, rows.last, "\t");
12670 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { return;
12671 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { }
12672 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { }
12673  
12674 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { var line = session.getLine(range.start.row);
12675 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { var position = range.start;
12676 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { var size = session.getTabSize();
12677 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { var column = session.documentToScreenColumn(position.row, position.column);
12678  
12679 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { if (this.session.getUseSoftTabs()) {
12680 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { var count = (size - column % size);
12681 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { var indentString = lang.stringRepeat(" ", count);
12682 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { } else {
12683 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { var count = column % size;
12684 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { while (line[range.start.column - 1] == " " && count) {
12685 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { range.start.column--;
12686 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { count--;
12687 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { }
12688 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { this.selection.setSelectionRange(range);
12689 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { indentString = "\t";
12690 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { }
12691 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { return this.insert(indentString);
12692 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { };
12693 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { this.blockIndent = function() {
12694 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { var rows = this.$getSelectedRows();
12695 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { this.session.indentRows(rows.first, rows.last, "\t");
12696 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { };
12697 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { this.blockOutdent = function() {
12698 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { var selection = this.session.getSelection();
12699 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { this.session.outdentRows(selection.getRange());
12700 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { };
12701 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { this.sortLines = function() {
12702 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { var rows = this.$getSelectedRows();
12703 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { var session = this.session;
12704  
12705 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { var lines = [];
12706 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) { for (i = rows.first; i <= rows.last; i++)
12707 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++) lines.push(session.getLine(i));
12708  
12709 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++) lines.sort(function(a, b) {
12710 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++) if (a.toLowerCase() < b.toLowerCase()) return -1;
12711 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1; if (a.toLowerCase() > b.toLowerCase()) return 1;
12712 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1; return 0;
12713 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1; });
12714  
12715 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1; var deleteRange = new Range(0, 0, 0, 0);
12716 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1; for (var i = rows.first; i <= rows.last; i++) {
12717 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) { var line = session.getLine(i);
12718 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) { deleteRange.start.row = i;
12719 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) { deleteRange.end.row = i;
12720 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) { deleteRange.end.column = line.length;
12721 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) { session.replace(deleteRange, lines[i-rows.first]);
12722 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) { }
12723 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) { };
12724 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) { this.toggleCommentLines = function() {
12725 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) { var state = this.session.getState(this.getCursorPosition().row);
12726 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) { var rows = this.$getSelectedRows();
12727 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) { this.session.getMode().toggleCommentLines(state, this.session, rows.first, rows.last);
12728 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) { };
12729  
12730 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) { this.toggleBlockComment = function() {
12731 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) { var cursor = this.getCursorPosition();
12732 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) { var state = this.session.getState(cursor.row);
12733 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) { var range = this.getSelectionRange();
12734 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) { this.session.getMode().toggleBlockComment(state, this.session, range, cursor);
12735 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) { };
12736 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) { this.getNumberAt = function(row, column) {
12737 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) { var _numberRx = /[\-]?[0-9]+(?:\.[0-9]+)?/g;
12738 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) { _numberRx.lastIndex = 0;
12739  
12740 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) { var s = this.session.getLine(row);
12741 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) { while (_numberRx.lastIndex < column) {
12742 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) { var m = _numberRx.exec(s);
12743 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) { if(m.index <= column && m.index+m[0].length >= column){
12744 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length > var number = {
12745 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length > value: m[0],
12746 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length > start: m.index,
12747 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length > end: m.index+m[0].length
12748 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length > };
12749 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length > return number;
12750 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length > }
12751 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length > }
12752 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length > return null;
12753 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length > };
12754 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length > this.modifyNumber = function(amount) {
12755 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length > var row = this.selection.getCursor().row;
12756 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length > var column = this.selection.getCursor().column;
12757 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length > var charRange = new Range(row, column-1, row, column);
12758  
12759 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length > var c = this.session.getTextRange(charRange);
12760 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length > if (!isNaN(parseFloat(c)) && isFinite(c)) {
12761 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length > var nr = this.getNumberAt(row, column);
12762 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length > if (nr) {
12763 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length > var fp = nr.value.indexOf(".") >= 0 ? nr.start + nr.value.indexOf(".") + 1 : nr.end;
12764 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length > var decimals = nr.start + nr.value.length - fp;
12765  
12766 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length > var t = parseFloat(nr.value);
12767 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length > t *= Math.pow(10, decimals);
12768  
12769  
12770 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length > if(fp !== nr.end && column < fp){
12771 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ amount *= Math.pow(10, nr.end - column - 1);
12772 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ } else {
12773 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ amount *= Math.pow(10, nr.end - column);
12774 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ }
12775  
12776 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ t += amount;
12777 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ t /= Math.pow(10, decimals);
12778 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var nnr = t.toFixed(decimals);
12779 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var replaceRange = new Range(row, nr.start, row, nr.end);
12780 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.session.replace(replaceRange, nnr);
12781 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.moveCursorTo(row, Math.max(nr.start +1, column + nnr.length - nr.value.length));
12782  
12783 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ }
12784 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ }
12785 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12786 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.removeLines = function() {
12787 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var rows = this.$getSelectedRows();
12788 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.session.removeFullLines(rows.first, rows.last);
12789 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.clearSelection();
12790 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12791  
12792 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.duplicateSelection = function() {
12793 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var sel = this.selection;
12794 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var doc = this.session;
12795 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var range = sel.getRange();
12796 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var reverse = sel.isBackwards();
12797 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ if (range.isEmpty()) {
12798 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var row = range.start.row;
12799 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ doc.duplicateLines(row, row);
12800 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ } else {
12801 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var point = reverse ? range.start : range.end;
12802 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var endPoint = doc.insert(point, doc.getTextRange(range), false);
12803 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ range.start = point;
12804 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ range.end = endPoint;
12805  
12806 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ sel.setSelectionRange(range, reverse);
12807 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ }
12808 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12809 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.moveLinesDown = function() {
12810 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.$moveLines(1, false);
12811 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12812 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.moveLinesUp = function() {
12813 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.$moveLines(-1, false);
12814 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12815 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.moveText = function(range, toPosition, copy) {
12816 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ return this.session.moveText(range, toPosition, copy);
12817 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12818 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.copyLinesUp = function() {
12819 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.$moveLines(-1, true);
12820 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12821 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.copyLinesDown = function() {
12822 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.$moveLines(1, true);
12823 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12824 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.$moveLines = function(dir, copy) {
12825 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var rows, moved;
12826 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var selection = this.selection;
12827 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ if (!selection.inMultiSelectMode || this.inVirtualSelectionMode) {
12828 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var range = selection.toOrientedRange();
12829 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ rows = this.$getSelectedRows(range);
12830 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ moved = this.session.$moveLines(rows.first, rows.last, copy ? 0 : dir);
12831 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ if (copy && dir == -1) moved = 0;
12832 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ range.moveBy(moved, 0);
12833 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ selection.fromOrientedRange(range);
12834 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ } else {
12835 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var ranges = selection.rangeList.ranges;
12836 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ selection.rangeList.detach(this.session);
12837 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.inVirtualSelectionMode = true;
12838  
12839 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var diff = 0;
12840 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var totalDiff = 0;
12841 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var l = ranges.length;
12842 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ for (var i = 0; i < l; i++) {
12843 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var rangeIndex = i;
12844 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ ranges[i].moveBy(diff, 0);
12845 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ rows = this.$getSelectedRows(ranges[i]);
12846 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var first = rows.first;
12847 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var last = rows.last;
12848 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ while (++i < l) {
12849 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ if (totalDiff) ranges[i].moveBy(totalDiff, 0);
12850 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var subRows = this.$getSelectedRows(ranges[i]);
12851 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ if (copy && subRows.first != last)
12852 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ break;
12853 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ else if (!copy && subRows.first > last + 1)
12854 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ break;
12855 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ last = subRows.last;
12856 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ }
12857 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ i--;
12858 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ diff = this.session.$moveLines(first, last, copy ? 0 : dir);
12859 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ if (copy && dir == -1) rangeIndex = i + 1;
12860 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ while (rangeIndex <= i) {
12861 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ ranges[rangeIndex].moveBy(diff, 0);
12862 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ rangeIndex++;
12863 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ }
12864 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ if (!copy) diff = 0;
12865 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ totalDiff += diff;
12866 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ }
12867  
12868 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ selection.fromOrientedRange(selection.ranges[0]);
12869 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ selection.rangeList.attach(this.session);
12870 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.inVirtualSelectionMode = false;
12871 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ }
12872 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12873 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.$getSelectedRows = function(range) {
12874 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ range = (range || this.getSelectionRange()).collapseRows();
12875  
12876 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ return {
12877 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ first: this.session.getRowFoldStart(range.start.row),
12878 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ last: this.session.getRowFoldEnd(range.end.row)
12879 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12880 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12881  
12882 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.onCompositionStart = function(text) {
12883 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.renderer.showComposition(this.getCursorPosition());
12884 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12885  
12886 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.onCompositionUpdate = function(text) {
12887 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.renderer.setCompositionText(text);
12888 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12889  
12890 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.onCompositionEnd = function() {
12891 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.renderer.hideComposition();
12892 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12893 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.getFirstVisibleRow = function() {
12894 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ return this.renderer.getFirstVisibleRow();
12895 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12896 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.getLastVisibleRow = function() {
12897 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ return this.renderer.getLastVisibleRow();
12898 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12899 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.isRowVisible = function(row) {
12900 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ return (row >= this.getFirstVisibleRow() && row <= this.getLastVisibleRow());
12901 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12902 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.isRowFullyVisible = function(row) {
12903 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ return (row >= this.renderer.getFirstFullyVisibleRow() && row <= this.renderer.getLastFullyVisibleRow());
12904 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12905 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.$getVisibleRowCount = function() {
12906 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ return this.renderer.getScrollBottomRow() - this.renderer.getScrollTopRow() + 1;
12907 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12908  
12909 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.$moveByPage = function(dir, select) {
12910 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var renderer = this.renderer;
12911 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var config = this.renderer.layerConfig;
12912 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var rows = dir * Math.floor(config.height / config.lineHeight);
12913  
12914 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.$blockScrolling++;
12915 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ if (select === true) {
12916 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.selection.$moveSelection(function(){
12917 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.moveCursorBy(rows, 0);
12918 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ });
12919 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ } else if (select === false) {
12920 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.selection.moveCursorBy(rows, 0);
12921 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.selection.clearSelection();
12922 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ }
12923 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.$blockScrolling--;
12924  
12925 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var scrollTop = renderer.scrollTop;
12926  
12927 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ renderer.scrollBy(0, rows * config.lineHeight);
12928 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ if (select != null)
12929 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ renderer.scrollCursorIntoView(null, 0.5);
12930  
12931 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ renderer.animateScrolling(scrollTop);
12932 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12933 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.selectPageDown = function() {
12934 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.$moveByPage(1, true);
12935 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12936 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.selectPageUp = function() {
12937 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.$moveByPage(-1, true);
12938 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12939 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.gotoPageDown = function() {
12940 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.$moveByPage(1, false);
12941 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12942 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.gotoPageUp = function() {
12943 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.$moveByPage(-1, false);
12944 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12945 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.scrollPageDown = function() {
12946 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.$moveByPage(1);
12947 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12948 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.scrollPageUp = function() {
12949 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.$moveByPage(-1);
12950 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12951 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.scrollToRow = function(row) {
12952 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.renderer.scrollToRow(row);
12953 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12954 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.scrollToLine = function(line, center, animate, callback) {
12955 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.renderer.scrollToLine(line, center, animate, callback);
12956 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12957 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.centerSelection = function() {
12958 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var range = this.getSelectionRange();
12959 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var pos = {
12960 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ row: Math.floor(range.start.row + (range.end.row - range.start.row) / 2),
12961 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ column: Math.floor(range.start.column + (range.end.column - range.start.column) / 2)
12962 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12963 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.renderer.alignCursor(pos, 0.5);
12964 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12965 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.getCursorPosition = function() {
12966 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ return this.selection.getCursor();
12967 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12968 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.getCursorPositionScreen = function() {
12969 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ return this.session.documentToScreenPosition(this.getCursorPosition());
12970 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12971 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.getSelectionRange = function() {
12972 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ return this.selection.getRange();
12973 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12974 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.selectAll = function() {
12975 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.$blockScrolling += 1;
12976 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.selection.selectAll();
12977 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.$blockScrolling -= 1;
12978 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12979 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.clearSelection = function() {
12980 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.selection.clearSelection();
12981 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12982 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.moveCursorTo = function(row, column) {
12983 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.selection.moveCursorTo(row, column);
12984 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12985 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.moveCursorToPosition = function(pos) {
12986 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.selection.moveCursorToPosition(pos);
12987 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
12988 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ this.jumpToMatching = function(select, expand) {
12989 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var cursor = this.getCursorPosition();
12990 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var iterator = new TokenIterator(this.session, cursor.row, cursor.column);
12991 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var prevToken = iterator.getCurrentToken();
12992 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var token = prevToken || iterator.stepForward();
12993  
12994 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ if (!token) return;
12995 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var matchType;
12996 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var found = false;
12997 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var depth = {};
12998 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var i = cursor.column - token.start;
12999 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var bracketType;
13000 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ var brackets = {
13001 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ ")": "(",
13002 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ "(": "(",
13003 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ "]": "[",
13004 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ "[": "[",
13005 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ "{": "{",
13006 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ "}": "{"
13007 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ };
13008  
13009 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ do {
13010 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ if (token.value.match(/[{}()\[\]]/g)) {
13011 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){ for (; i < token.value.length && !found; i++) {
13012 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) { if (!brackets[token.value[i]]) {
13013 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) { continue;
13014 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) { }
13015  
13016 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) { bracketType = brackets[token.value[i]] + '.' + token.type.replace("rparen", "lparen");
13017  
13018 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) { if (isNaN(depth[bracketType])) {
13019 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) { depth[bracketType] = 0;
13020 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) { }
13021  
13022 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) { switch (token.value[i]) {
13023 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) { case '(':
13024 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) { case '[':
13025 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) { case '{':
13026 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) { depth[bracketType]++;
13027 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) { break;
13028 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) { case ')':
13029 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) { case ']':
13030 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) { case '}':
13031 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) { depth[bracketType]--;
13032  
13033 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) { if (depth[bracketType] === -1) {
13034 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) { matchType = 'bracket';
13035 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) { found = true;
13036 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) { }
13037 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) { break;
13038 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) { }
13039 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) { }
13040 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) { }
13041 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) { else if (token && token.type.indexOf('tag-name') !== -1) {
13042 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) { if (isNaN(depth[token.value])) {
13043 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) { depth[token.value] = 0;
13044 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) { }
13045  
13046 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) { if (prevToken.value === '<') {
13047 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { depth[token.value]++;
13048 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { }
13049 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { else if (prevToken.value === '') {
13050 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { depth[token.value]--;
13051 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { }
13052  
13053 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { if (depth[token.value] === -1) {
13054 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { matchType = 'tag';
13055 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { found = true;
13056 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { }
13057 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { }
13058  
13059 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { if (!found) {
13060 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { prevToken = token;
13061 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { token = iterator.stepForward();
13062 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { i = 0;
13063 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { }
13064 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { } while (token && !found);
13065 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { if (!matchType)
13066 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { return;
13067  
13068 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { var range, pos;
13069 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { if (matchType === 'bracket') {
13070 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { range = this.session.getBracketRange(cursor);
13071 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { if (!range) {
13072 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { range = new Range(
13073 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { iterator.getCurrentTokenRow(),
13074 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { iterator.getCurrentTokenColumn() + i - 1,
13075 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { iterator.getCurrentTokenRow(),
13076 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { iterator.getCurrentTokenColumn() + i - 1
13077 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { );
13078 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { pos = range.start;
13079 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { if (expand || pos.row === cursor.row && Math.abs(pos.column - cursor.column) < 2)
13080 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { range = this.session.getBracketRange(pos);
13081 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { }
13082 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { }
13083 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { else if (matchType === 'tag') {
13084 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { if (token && token.type.indexOf('tag-name') !== -1)
13085 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { var tag = token.value;
13086 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { else
13087 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { return;
13088  
13089 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { range = new Range(
13090 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { iterator.getCurrentTokenRow(),
13091 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { iterator.getCurrentTokenColumn() - 2,
13092 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { iterator.getCurrentTokenRow(),
13093 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { iterator.getCurrentTokenColumn() - 2
13094 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { );
13095 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { if (range.compare(cursor.row, cursor.column) === 0) {
13096 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { found = false;
13097 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { do {
13098 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { token = prevToken;
13099 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { prevToken = iterator.stepBackward();
13100  
13101 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { if (prevToken) {
13102 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { if (prevToken.type.indexOf('tag-close') !== -1) {
13103 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { range.setEnd(iterator.getCurrentTokenRow(), iterator.getCurrentTokenColumn() + 1);
13104 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { }
13105  
13106 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { if (token.value === tag && token.type.indexOf('tag-name') !== -1) {
13107 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { if (prevToken.value === '<') {
13108 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { depth[tag]++;
13109 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { }
13110 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { else if (prevToken.value === '</') {
13111 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { depth[tag]--;
13112 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { }
13113  
13114 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { if (depth[tag] === 0)
13115 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { found = true;
13116 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { }
13117 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { }
13118 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { } while (prevToken && !found);
13119 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { }
13120 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { if (token && token.type.indexOf('tag-name')) {
13121 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { pos = range.start;
13122 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') { if (pos.row == cursor.row && Math.abs(pos.column - cursor.column) < 2)
13123 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) pos = range.end;
13124 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) }
13125 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) }
13126  
13127 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) pos = range && range.cursor || pos;
13128 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) if (pos) {
13129 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) if (select) {
13130 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) if (range && expand) {
13131 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.selection.setRange(range);
13132 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) } else if (range && range.isEqual(this.getSelectionRange())) {
13133 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.clearSelection();
13134 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) } else {
13135 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.selection.selectTo(pos.row, pos.column);
13136 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) }
13137 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) } else {
13138 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.selection.moveTo(pos.row, pos.column);
13139 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) }
13140 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) }
13141 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) };
13142 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.gotoLine = function(lineNumber, column, animate) {
13143 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.selection.clearSelection();
13144 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.session.unfold({row: lineNumber - 1, column: column || 0});
13145  
13146 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.$blockScrolling += 1;
13147 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.exitMultiSelectMode && this.exitMultiSelectMode();
13148 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.moveCursorTo(lineNumber - 1, column || 0);
13149 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.$blockScrolling -= 1;
13150  
13151 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) if (!this.isRowFullyVisible(lineNumber - 1))
13152 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.scrollToLine(lineNumber - 1, true, animate);
13153 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) };
13154 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.navigateTo = function(row, column) {
13155 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.selection.moveTo(row, column);
13156 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) };
13157 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.navigateUp = function(times) {
13158 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) if (this.selection.isMultiLine() && !this.selection.isBackwards()) {
13159 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) var selectionStart = this.selection.anchor.getPosition();
13160 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) return this.moveCursorToPosition(selectionStart);
13161 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) }
13162 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.selection.clearSelection();
13163 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.selection.moveCursorBy(-times || -1, 0);
13164 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) };
13165 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.navigateDown = function(times) {
13166 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) if (this.selection.isMultiLine() && this.selection.isBackwards()) {
13167 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) var selectionEnd = this.selection.anchor.getPosition();
13168 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) return this.moveCursorToPosition(selectionEnd);
13169 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) }
13170 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.selection.clearSelection();
13171 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.selection.moveCursorBy(times || 1, 0);
13172 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) };
13173 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.navigateLeft = function(times) {
13174 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) if (!this.selection.isEmpty()) {
13175 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) var selectionStart = this.getSelectionRange().start;
13176 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.moveCursorToPosition(selectionStart);
13177 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) }
13178 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) else {
13179 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) times = times || 1;
13180 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) while (times--) {
13181 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.selection.moveCursorLeft();
13182 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) }
13183 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) }
13184 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.clearSelection();
13185 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) };
13186 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.navigateRight = function(times) {
13187 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) if (!this.selection.isEmpty()) {
13188 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) var selectionEnd = this.getSelectionRange().end;
13189 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.moveCursorToPosition(selectionEnd);
13190 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) }
13191 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) else {
13192 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) times = times || 1;
13193 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) while (times--) {
13194 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.selection.moveCursorRight();
13195 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) }
13196 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) }
13197 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.clearSelection();
13198 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) };
13199 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.navigateLineStart = function() {
13200 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.selection.moveCursorLineStart();
13201 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.clearSelection();
13202 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) };
13203 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.navigateLineEnd = function() {
13204 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.selection.moveCursorLineEnd();
13205 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.clearSelection();
13206 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) };
13207 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.navigateFileEnd = function() {
13208 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.selection.moveCursorFileEnd();
13209 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.clearSelection();
13210 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) };
13211 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.navigateFileStart = function() {
13212 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.selection.moveCursorFileStart();
13213 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.clearSelection();
13214 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) };
13215 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.navigateWordRight = function() {
13216 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.selection.moveCursorWordRight();
13217 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.clearSelection();
13218 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) };
13219 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.navigateWordLeft = function() {
13220 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.selection.moveCursorWordLeft();
13221 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.clearSelection();
13222 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) };
13223 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.replace = function(replacement, options) {
13224 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) if (options)
13225 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.$search.set(options);
13226  
13227 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) var range = this.$search.find(this.session);
13228 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) var replaced = 0;
13229 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) if (!range)
13230 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) return replaced;
13231  
13232 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) if (this.$tryReplace(range, replacement)) {
13233 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) replaced = 1;
13234 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) }
13235 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) if (range !== null) {
13236 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.selection.setSelectionRange(range);
13237 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.renderer.scrollSelectionIntoView(range.start, range.end);
13238 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) }
13239  
13240 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) return replaced;
13241 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) };
13242 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.replaceAll = function(replacement, options) {
13243 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) if (options) {
13244 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.$search.set(options);
13245 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) }
13246  
13247 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) var ranges = this.$search.findAll(this.session);
13248 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) var replaced = 0;
13249 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) if (!ranges.length)
13250 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) return replaced;
13251  
13252 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.$blockScrolling += 1;
13253  
13254 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) var selection = this.getSelectionRange();
13255 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.selection.moveTo(0, 0);
13256  
13257 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) for (var i = ranges.length - 1; i >= 0; --i) {
13258 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) if(this.$tryReplace(ranges[i], replacement)) {
13259 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) replaced++;
13260 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) }
13261 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) }
13262  
13263 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.selection.setSelectionRange(selection);
13264 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.$blockScrolling -= 1;
13265  
13266 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) return replaced;
13267 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) };
13268  
13269 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.$tryReplace = function(range, replacement) {
13270 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) var input = this.session.getTextRange(range);
13271 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) replacement = this.$search.replace(input, replacement);
13272 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) if (replacement !== null) {
13273 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) range.end = this.session.replace(range, replacement);
13274 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) return range;
13275 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) } else {
13276 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) return null;
13277 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) }
13278 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) };
13279 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.getLastSearchOptions = function() {
13280 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) return this.$search.getOptions();
13281 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) };
13282 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.find = function(needle, options, animate) {
13283 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) if (!options)
13284 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) options = {};
13285  
13286 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) if (typeof needle == "string" || needle instanceof RegExp)
13287 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) options.needle = needle;
13288 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) else if (typeof needle == "object")
13289 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) oop.mixin(options, needle);
13290  
13291 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) var range = this.selection.getRange();
13292 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) if (options.needle == null) {
13293 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) needle = this.session.getTextRange(range)
13294 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) || this.$search.$options.needle;
13295 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) if (!needle) {
13296 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) range = this.session.getWordRange(range.start.row, range.start.column);
13297 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) needle = this.session.getTextRange(range);
13298 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) }
13299 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.$search.set({needle: needle});
13300 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) }
13301  
13302 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.$search.set(options);
13303 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) if (!options.start)
13304 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.$search.set({start: range});
13305  
13306 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) var newRange = this.$search.find(this.session);
13307 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) if (options.preventScroll)
13308 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) return newRange;
13309 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) if (newRange) {
13310 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.revealRange(newRange, animate);
13311 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) return newRange;
13312 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) }
13313 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) if (options.backwards)
13314 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) range.start = range.end;
13315 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) else
13316 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) range.end = range.start;
13317 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.selection.setRange(range);
13318 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) };
13319 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.findNext = function(options, animate) {
13320 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.find({skipCurrent: true, backwards: false}, options, animate);
13321 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) };
13322 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.findPrevious = function(options, animate) {
13323 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.find(options, {skipCurrent: true, backwards: true}, animate);
13324 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) };
13325  
13326 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.revealRange = function(range, animate) {
13327 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.$blockScrolling += 1;
13328 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.session.unfold(range);
13329 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.selection.setSelectionRange(range);
13330 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.$blockScrolling -= 1;
13331  
13332 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) var scrollTop = this.renderer.scrollTop;
13333 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.renderer.scrollSelectionIntoView(range.start, range.end, 0.5);
13334 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) if (animate !== false)
13335 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.renderer.animateScrolling(scrollTop);
13336 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) };
13337 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.undo = function() {
13338 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.$blockScrolling++;
13339 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.session.getUndoManager().undo();
13340 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.$blockScrolling--;
13341 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.renderer.scrollCursorIntoView(null, 0.5);
13342 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) };
13343 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.redo = function() {
13344 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.$blockScrolling++;
13345 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.session.getUndoManager().redo();
13346 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.$blockScrolling--;
13347 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.renderer.scrollCursorIntoView(null, 0.5);
13348 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) };
13349 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.destroy = function() {
13350 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.renderer.destroy();
13351 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this._signal("destroy", this);
13352 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) if (this.session) {
13353 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.session.destroy();
13354 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) }
13355 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) };
13356 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.setAutoScrollEditorIntoView = function(enable) {
13357 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) if (!enable)
13358 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) return;
13359 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) var rect;
13360 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) var self = this;
13361 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) var shouldScroll = false;
13362 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) if (!this.$scrollAnchor)
13363 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.$scrollAnchor = document.createElement("div");
13364 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) var scrollAnchor = this.$scrollAnchor;
13365 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) scrollAnchor.style.cssText = "position:absolute";
13366 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) this.container.insertBefore(scrollAnchor, this.container.firstChild);
13367 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) var onChangeSelection = this.on("changeSelection", function() {
13368 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) shouldScroll = true;
13369 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) });
13370 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) var onBeforeRender = this.renderer.on("beforeRender", function() {
13371 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) if (shouldScroll)
13372 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) rect = self.renderer.container.getBoundingClientRect();
13373 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) });
13374 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) var onAfterRender = this.renderer.on("afterRender", function() {
13375 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) if (shouldScroll && rect && (self.isFocused()
13376 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) || self.searchBox && self.searchBox.isFocused())
13377 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) ) {
13378 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) var renderer = self.renderer;
13379 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) var pos = renderer.$cursorLayer.$pixelPos;
13380 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) var config = renderer.layerConfig;
13381 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) var top = pos.top - config.offset;
13382 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2) if (pos.top >= 0 && top + rect.top < 0) {
13383 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) { shouldScroll = true;
13384 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) { } else if (pos.top < config.height &&
13385 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && pos.top + rect.top + config.lineHeight > window.innerHeight) {
13386 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && shouldScroll = false;
13387 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && } else {
13388 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && shouldScroll = null;
13389 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && }
13390 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (shouldScroll != null) {
13391 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && scrollAnchor.style.top = top + "px";
13392 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && scrollAnchor.style.left = pos.left + "px";
13393 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && scrollAnchor.style.height = config.lineHeight + "px";
13394 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && scrollAnchor.scrollIntoView(shouldScroll);
13395 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && }
13396 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && shouldScroll = rect = null;
13397 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && }
13398 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && });
13399 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.setAutoScrollEditorIntoView = function(enable) {
13400 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (enable)
13401 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && return;
13402 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && delete this.setAutoScrollEditorIntoView;
13403 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.off("changeSelection", onChangeSelection);
13404 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.renderer.off("afterRender", onAfterRender);
13405 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.renderer.off("beforeRender", onBeforeRender);
13406 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && };
13407 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && };
13408  
13409  
13410 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.$resetCursorStyle = function() {
13411 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var style = this.$cursorStyle || "ace";
13412 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var cursorLayer = this.renderer.$cursorLayer;
13413 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (!cursorLayer)
13414 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && return;
13415 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && cursorLayer.setSmoothBlinking(/smooth/.test(style));
13416 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && cursorLayer.isBlinking = !this.$readOnly && style != "wide";
13417 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && dom.setCssClass(cursorLayer.element, "ace_slim-cursors", /slim/.test(style));
13418 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && };
13419  
13420 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&}).call(Editor.prototype);
13421  
13422  
13423  
13424 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&config.defineOptions(Editor.prototype, "editor", {
13425 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && selectionStyle: {
13426 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && set: function(style) {
13427 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.onSelectionChange();
13428 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this._signal("changeSelectionStyle", {data: style});
13429 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && },
13430 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && initialValue: "line"
13431 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && },
13432 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && highlightActiveLine: {
13433 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && set: function() {this.$updateHighlightActiveLine();},
13434 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && initialValue: true
13435 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && },
13436 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && highlightSelectedWord: {
13437 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && set: function(shouldHighlight) {this.$onSelectionChange();},
13438 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && initialValue: true
13439 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && },
13440 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && readOnly: {
13441 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && set: function(readOnly) {
13442 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.$resetCursorStyle();
13443 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && },
13444 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && initialValue: false
13445 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && },
13446 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && cursorStyle: {
13447 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && set: function(val) { this.$resetCursorStyle(); },
13448 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && values: ["ace", "slim", "smooth", "wide"],
13449 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && initialValue: "ace"
13450 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && },
13451 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && mergeUndoDeltas: {
13452 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && values: [false, true, "always"],
13453 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && initialValue: true
13454 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && },
13455 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && behavioursEnabled: {initialValue: true},
13456 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && wrapBehavioursEnabled: {initialValue: true},
13457 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && autoScrollEditorIntoView: {
13458 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && set: function(val) {this.setAutoScrollEditorIntoView(val)}
13459 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && },
13460 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && keyboardHandler: {
13461 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && set: function(val) { this.setKeyboardHandler(val); },
13462 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && get: function() { return this.keybindingId; },
13463 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && handlesSet: true
13464 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && },
13465  
13466 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && hScrollBarAlwaysVisible: "renderer",
13467 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && vScrollBarAlwaysVisible: "renderer",
13468 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && highlightGutterLine: "renderer",
13469 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && animatedScroll: "renderer",
13470 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && showInvisibles: "renderer",
13471 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && showPrintMargin: "renderer",
13472 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && printMarginColumn: "renderer",
13473 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && printMargin: "renderer",
13474 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && fadeFoldWidgets: "renderer",
13475 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && showFoldWidgets: "renderer",
13476 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && showLineNumbers: "renderer",
13477 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && showGutter: "renderer",
13478 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && displayIndentGuides: "renderer",
13479 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && fontSize: "renderer",
13480 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && fontFamily: "renderer",
13481 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && maxLines: "renderer",
13482 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && minLines: "renderer",
13483 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && scrollPastEnd: "renderer",
13484 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && fixedWidthGutter: "renderer",
13485 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && theme: "renderer",
13486  
13487 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && scrollSpeed: "$mouseHandler",
13488 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && dragDelay: "$mouseHandler",
13489 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && dragEnabled: "$mouseHandler",
13490 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && focusTimout: "$mouseHandler",
13491 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && tooltipFollowsMouse: "$mouseHandler",
13492  
13493 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && firstLineNumber: "session",
13494 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && overwrite: "session",
13495 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && newLineMode: "session",
13496 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && useWorker: "session",
13497 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && useSoftTabs: "session",
13498 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && tabSize: "session",
13499 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && wrap: "session",
13500 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && indentedSoftWrap: "session",
13501 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && foldStyle: "session",
13502 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && mode: "session"
13503 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&});
13504  
13505 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&exports.Editor = Editor;
13506 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&});
13507  
13508 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&ace.define("ace/undomanager",["require","exports","module"], function(require, exports, module) {
13509 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&"use strict";
13510 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&var UndoManager = function() {
13511 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.reset();
13512 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&};
13513  
13514 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&(function() {
13515 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.execute = function(options) {
13516 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var deltaSets = options.args[0];
13517 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.$doc = options.args[1];
13518 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (options.merge && this.hasUndo()){
13519 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.dirtyCounter--;
13520 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && deltaSets = this.$undoStack.pop().concat(deltaSets);
13521 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && }
13522 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.$undoStack.push(deltaSets);
13523 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.$redoStack = [];
13524 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (this.dirtyCounter < 0) {
13525 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.dirtyCounter = NaN;
13526 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && }
13527 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.dirtyCounter++;
13528 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && };
13529 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.undo = function(dontSelect) {
13530 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var deltaSets = this.$undoStack.pop();
13531 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var undoSelectionRange = null;
13532 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (deltaSets) {
13533 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && undoSelectionRange = this.$doc.undoChanges(deltaSets, dontSelect);
13534 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.$redoStack.push(deltaSets);
13535 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.dirtyCounter--;
13536 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && }
13537  
13538 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && return undoSelectionRange;
13539 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && };
13540 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.redo = function(dontSelect) {
13541 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var deltaSets = this.$redoStack.pop();
13542 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var redoSelectionRange = null;
13543 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (deltaSets) {
13544 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && redoSelectionRange =
13545 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.$doc.redoChanges(this.$deserializeDeltas(deltaSets), dontSelect);
13546 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.$undoStack.push(deltaSets);
13547 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.dirtyCounter++;
13548 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && }
13549 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && return redoSelectionRange;
13550 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && };
13551 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.reset = function() {
13552 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.$undoStack = [];
13553 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.$redoStack = [];
13554 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.dirtyCounter = 0;
13555 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && };
13556 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.hasUndo = function() {
13557 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && return this.$undoStack.length > 0;
13558 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && };
13559 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.hasRedo = function() {
13560 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && return this.$redoStack.length > 0;
13561 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && };
13562 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.markClean = function() {
13563 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.dirtyCounter = 0;
13564 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && };
13565 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.isClean = function() {
13566 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && return this.dirtyCounter === 0;
13567 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && };
13568 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.$serializeDeltas = function(deltaSets) {
13569 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && return cloneDeltaSetsObj(deltaSets, $serializeDelta);
13570 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && };
13571 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.$deserializeDeltas = function(deltaSets) {
13572 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && return cloneDeltaSetsObj(deltaSets, $deserializeDelta);
13573 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && };
13574  
13575 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && function $serializeDelta(delta){
13576 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && return {
13577 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && action: delta.action,
13578 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && start: delta.start,
13579 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && end: delta.end,
13580 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && lines: delta.lines.length == 1 ? null : delta.lines,
13581 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && text: delta.lines.length == 1 ? delta.lines[0] : null
13582 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && };
13583 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && }
13584  
13585 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && function $deserializeDelta(delta) {
13586 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && return {
13587 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && action: delta.action,
13588 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && start: delta.start,
13589 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && end: delta.end,
13590 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && lines: delta.lines || [delta.text]
13591 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && };
13592 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && }
13593  
13594 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && function cloneDeltaSetsObj(deltaSets_old, fnGetModifiedDelta) {
13595 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var deltaSets_new = new Array(deltaSets_old.length);
13596 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && for (var i = 0; i < deltaSets_old.length; i++) {
13597 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var deltaSet_old = deltaSets_old[i];
13598 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var deltaSet_new = { group: deltaSet_old.group, deltas: new Array(deltaSet_old.length)};
13599  
13600 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && for (var j = 0; j < deltaSet_old.deltas.length; j++) {
13601 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var delta_old = deltaSet_old.deltas[j];
13602 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && deltaSet_new.deltas[j] = fnGetModifiedDelta(delta_old);
13603 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && }
13604  
13605 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && deltaSets_new[i] = deltaSet_new;
13606 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && }
13607 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && return deltaSets_new;
13608 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && }
13609  
13610 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&}).call(UndoManager.prototype);
13611  
13612 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&exports.UndoManager = UndoManager;
13613 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&});
13614  
13615 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&ace.define("ace/layer/gutter",["require","exports","module","ace/lib/dom","ace/lib/oop","ace/lib/lang","ace/lib/event_emitter"], function(require, exports, module) {
13616 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&"use strict";
13617  
13618 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&var dom = require("../lib/dom");
13619 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&var oop = require("../lib/oop");
13620 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&var lang = require("../lib/lang");
13621 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&var EventEmitter = require("../lib/event_emitter").EventEmitter;
13622  
13623 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&var Gutter = function(parentEl) {
13624 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.element = dom.createElement("div");
13625 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.element.className = "ace_layer ace_gutter-layer";
13626 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && parentEl.appendChild(this.element);
13627 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.setShowFoldWidgets(this.$showFoldWidgets);
13628  
13629 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.gutterWidth = 0;
13630  
13631 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.$annotations = [];
13632 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.$updateAnnotations = this.$updateAnnotations.bind(this);
13633  
13634 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.$cells = [];
13635 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&};
13636  
13637 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&(function() {
13638  
13639 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && oop.implement(this, EventEmitter);
13640  
13641 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.setSession = function(session) {
13642 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (this.session)
13643 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.session.removeEventListener("change", this.$updateAnnotations);
13644 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.session = session;
13645 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (session)
13646 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && session.on("change", this.$updateAnnotations);
13647 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && };
13648  
13649 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.addGutterDecoration = function(row, className){
13650 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (window.console)
13651 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && console.warn && console.warn("deprecated use session.addGutterDecoration");
13652 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.session.addGutterDecoration(row, className);
13653 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && };
13654  
13655 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.removeGutterDecoration = function(row, className){
13656 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (window.console)
13657 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && console.warn && console.warn("deprecated use session.removeGutterDecoration");
13658 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.session.removeGutterDecoration(row, className);
13659 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && };
13660  
13661 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.setAnnotations = function(annotations) {
13662 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.$annotations = [];
13663 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && for (var i = 0; i < annotations.length; i++) {
13664 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var annotation = annotations[i];
13665 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var row = annotation.row;
13666 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var rowInfo = this.$annotations[row];
13667 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (!rowInfo)
13668 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && rowInfo = this.$annotations[row] = {text: []};
13669  
13670 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var annoText = annotation.text;
13671 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && annoText = annoText ? lang.escapeHTML(annoText) : annotation.html || "";
13672  
13673 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (rowInfo.text.indexOf(annoText) === -1)
13674 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && rowInfo.text.push(annoText);
13675  
13676 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var type = annotation.type;
13677 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (type == "error")
13678 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && rowInfo.className = " ace_error";
13679 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && else if (type == "warning" && rowInfo.className != " ace_error")
13680 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && rowInfo.className = " ace_warning";
13681 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && else if (type == "info" && (!rowInfo.className))
13682 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && rowInfo.className = " ace_info";
13683 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && }
13684 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && };
13685  
13686 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.$updateAnnotations = function (delta) {
13687 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (!this.$annotations.length)
13688 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && return;
13689 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var firstRow = delta.start.row;
13690 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var len = delta.end.row - firstRow;
13691 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (len === 0) {
13692 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && } else if (delta.action == 'remove') {
13693 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.$annotations.splice(firstRow, len + 1, null);
13694 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && } else {
13695 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var args = new Array(len + 1);
13696 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && args.unshift(firstRow, 1);
13697 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.$annotations.splice.apply(this.$annotations, args);
13698 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && }
13699 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && };
13700  
13701 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.update = function(config) {
13702 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var session = this.session;
13703 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var firstRow = config.firstRow;
13704 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var lastRow = Math.min(config.lastRow + config.gutterOffset, // needed to compensate for hor scollbar
13705 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && session.getLength() - 1);
13706 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var fold = session.getNextFoldLine(firstRow);
13707 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var foldStart = fold ? fold.start.row : Infinity;
13708 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var foldWidgets = this.$showFoldWidgets && session.foldWidgets;
13709 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var breakpoints = session.$breakpoints;
13710 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var decorations = session.$decorations;
13711 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var firstLineNumber = session.$firstLineNumber;
13712 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var lastLineNumber = 0;
13713  
13714 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var gutterRenderer = session.gutterRenderer || this.$renderer;
13715  
13716 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var cell = null;
13717 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var index = -1;
13718 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var row = firstRow;
13719 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && while (true) {
13720 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (row > foldStart) {
13721 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && row = fold.end.row + 1;
13722 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && fold = session.getNextFoldLine(row, fold);
13723 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && foldStart = fold ? fold.start.row : Infinity;
13724 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && }
13725 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (row > lastRow) {
13726 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && while (this.$cells.length > index + 1) {
13727 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && cell = this.$cells.pop();
13728 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.element.removeChild(cell.element);
13729 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && }
13730 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && break;
13731 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && }
13732  
13733 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && cell = this.$cells[++index];
13734 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (!cell) {
13735 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && cell = {element: null, textNode: null, foldWidget: null};
13736 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && cell.element = dom.createElement("div");
13737 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && cell.textNode = document.createTextNode('');
13738 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && cell.element.appendChild(cell.textNode);
13739 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.element.appendChild(cell.element);
13740 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.$cells[index] = cell;
13741 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && }
13742  
13743 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var className = "ace_gutter-cell ";
13744 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (breakpoints[row])
13745 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && className += breakpoints[row];
13746 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (decorations[row])
13747 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && className += decorations[row];
13748 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (this.$annotations[row])
13749 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && className += this.$annotations[row].className;
13750 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (cell.element.className != className)
13751 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && cell.element.className = className;
13752  
13753 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var height = session.getRowLength(row) * config.lineHeight + "px";
13754 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (height != cell.element.style.height)
13755 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && cell.element.style.height = height;
13756  
13757 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (foldWidgets) {
13758 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var c = foldWidgets[row];
13759 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (c == null)
13760 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && c = foldWidgets[row] = session.getFoldWidget(row);
13761 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && }
13762  
13763 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (c) {
13764 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (!cell.foldWidget) {
13765 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && cell.foldWidget = dom.createElement("span");
13766 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && cell.element.appendChild(cell.foldWidget);
13767 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && }
13768 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var className = "ace_fold-widget ace_" + c;
13769 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (c == "start" && row == foldStart && row < fold.end.row)
13770 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && className += " ace_closed";
13771 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && else
13772 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && className += " ace_open";
13773 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (cell.foldWidget.className != className)
13774 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && cell.foldWidget.className = className;
13775  
13776 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var height = config.lineHeight + "px";
13777 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (cell.foldWidget.style.height != height)
13778 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && cell.foldWidget.style.height = height;
13779 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && } else {
13780 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (cell.foldWidget) {
13781 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && cell.element.removeChild(cell.foldWidget);
13782 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && cell.foldWidget = null;
13783 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && }
13784 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && }
13785  
13786 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var text = lastLineNumber = gutterRenderer
13787 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && ? gutterRenderer.getText(session, row)
13788 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && : row + firstLineNumber;
13789 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (text != cell.textNode.data)
13790 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && cell.textNode.data = text;
13791  
13792 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && row++;
13793 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && }
13794  
13795 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.element.style.height = config.minHeight + "px";
13796  
13797 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (this.$fixedWidth || session.$useWrapMode)
13798 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && lastLineNumber = session.getLength() + firstLineNumber;
13799  
13800 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var gutterWidth = gutterRenderer
13801 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && ? gutterRenderer.getWidth(session, lastLineNumber, config)
13802 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && : lastLineNumber.toString().length * config.characterWidth;
13803  
13804 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var padding = this.$padding || this.$computePadding();
13805 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && gutterWidth += padding.left + padding.right;
13806 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (gutterWidth !== this.gutterWidth && !isNaN(gutterWidth)) {
13807 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.gutterWidth = gutterWidth;
13808 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.element.style.width = Math.ceil(this.gutterWidth) + "px";
13809 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this._emit("changeGutterWidth", gutterWidth);
13810 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && }
13811 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && };
13812  
13813 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.$fixedWidth = false;
13814  
13815 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.$showLineNumbers = true;
13816 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.$renderer = "";
13817 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.setShowLineNumbers = function(show) {
13818 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.$renderer = !show && {
13819 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && getWidth: function() {return ""},
13820 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && getText: function() {return ""}
13821 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && };
13822 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && };
13823  
13824 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.getShowLineNumbers = function() {
13825 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && return this.$showLineNumbers;
13826 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && };
13827  
13828 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.$showFoldWidgets = true;
13829 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.setShowFoldWidgets = function(show) {
13830 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (show)
13831 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && dom.addCssClass(this.element, "ace_folding-enabled");
13832 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && else
13833 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && dom.removeCssClass(this.element, "ace_folding-enabled");
13834  
13835 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.$showFoldWidgets = show;
13836 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.$padding = null;
13837 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && };
13838  
13839 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.getShowFoldWidgets = function() {
13840 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && return this.$showFoldWidgets;
13841 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && };
13842  
13843 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.$computePadding = function() {
13844 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (!this.element.firstChild)
13845 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && return {left: 0, right: 0};
13846 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var style = dom.computedStyle(this.element.firstChild);
13847 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.$padding = {};
13848 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.$padding.left = parseInt(style.paddingLeft) + 1 || 0;
13849 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.$padding.right = parseInt(style.paddingRight) || 0;
13850 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && return this.$padding;
13851 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && };
13852  
13853 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.getRegion = function(point) {
13854 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var padding = this.$padding || this.$computePadding();
13855 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var rect = this.element.getBoundingClientRect();
13856 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (point.x < padding.left + rect.left)
13857 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && return "markers";
13858 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (this.$showFoldWidgets && point.x > rect.right - padding.right)
13859 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && return "foldWidgets";
13860 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && };
13861  
13862 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&}).call(Gutter.prototype);
13863  
13864 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&exports.Gutter = Gutter;
13865  
13866 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&});
13867  
13868 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&ace.define("ace/layer/marker",["require","exports","module","ace/range","ace/lib/dom"], function(require, exports, module) {
13869 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&"use strict";
13870  
13871 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&var Range = require("../range").Range;
13872 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&var dom = require("../lib/dom");
13873  
13874 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&var Marker = function(parentEl) {
13875 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.element = dom.createElement("div");
13876 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.element.className = "ace_layer ace_marker-layer";
13877 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && parentEl.appendChild(this.element);
13878 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&};
13879  
13880 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&(function() {
13881  
13882 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.$padding = 0;
13883  
13884 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.setPadding = function(padding) {
13885 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.$padding = padding;
13886 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && };
13887 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.setSession = function(session) {
13888 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.session = session;
13889 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && };
13890  
13891 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.setMarkers = function(markers) {
13892 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.markers = markers;
13893 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && };
13894  
13895 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.update = function(config) {
13896 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var config = config || this.config;
13897 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (!config)
13898 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && return;
13899  
13900 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.config = config;
13901  
13902  
13903 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var html = [];
13904 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && for (var key in this.markers) {
13905 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var marker = this.markers[key];
13906  
13907 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (!marker.range) {
13908 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && marker.update(html, this, this.session, config);
13909 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && continue;
13910 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && }
13911  
13912 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var range = marker.range.clipRows(config.firstRow, config.lastRow);
13913 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (range.isEmpty()) continue;
13914  
13915 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && range = range.toScreenRange(this.session);
13916 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (marker.renderer) {
13917 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var top = this.$getTop(range.start.row, config);
13918 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var left = this.$padding + range.start.column * config.characterWidth;
13919 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && marker.renderer(html, range, left, top, config);
13920 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && } else if (marker.type == "fullLine") {
13921 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.drawFullLineMarker(html, range, marker.clazz, config);
13922 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && } else if (marker.type == "screenLine") {
13923 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.drawScreenLineMarker(html, range, marker.clazz, config);
13924 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && } else if (range.isMultiLine()) {
13925 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && if (marker.type == "text")
13926 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.drawTextMarker(html, range, marker.clazz, config);
13927 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && else
13928 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.drawMultiLineMarker(html, range, marker.clazz, config);
13929 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && } else {
13930 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.drawSingleLineMarker(html, range, marker.clazz + " ace_start" + " ace_br15", config);
13931 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && }
13932 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && }
13933 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.element.innerHTML = html.join("");
13934 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && };
13935  
13936 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.$getTop = function(row, layerConfig) {
13937 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && return (row - layerConfig.firstRowScreen) * layerConfig.lineHeight;
13938 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && };
13939  
13940 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && function getBorderClass(tl, tr, br, bl) {
13941 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && return (tl ? 1 : 0) | (tr ? 2 : 0) | (br ? 4 : 0) | (bl ? 8 : 0);
13942 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && }
13943 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.drawTextMarker = function(stringBuilder, range, clazz, layerConfig, extraStyle) {
13944 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var session = this.session;
13945 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var start = range.start.row;
13946 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var end = range.end.row;
13947 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var row = start;
13948 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var prev = 0;
13949 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var curr = 0;
13950 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var next = session.getScreenLastRowColumn(row);
13951 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var lineRange = new Range(row, range.start.column, row, curr);
13952 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && for (; row <= end; row++) {
13953 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && lineRange.start.row = lineRange.end.row = row;
13954 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && lineRange.start.column = row == start ? range.start.column : session.getRowWrapIndent(row);
13955 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && lineRange.end.column = next;
13956 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && prev = curr;
13957 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && curr = next;
13958 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && next = row + 1 < end ? session.getScreenLastRowColumn(row + 1) : row == end ? 0 : range.end.column;
13959 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.drawSingleLineMarker(stringBuilder, lineRange,
13960 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && clazz + (row == start ? " ace_start" : "") + " ace_br"
13961 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && + getBorderClass(row == start || row == start + 1 && range.start.column, prev < curr, curr > next, row == end),
13962 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && layerConfig, row == end ? 0 : 1, extraStyle);
13963 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && }
13964 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && };
13965 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && this.drawMultiLineMarker = function(stringBuilder, range, clazz, config, extraStyle) {
13966 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var padding = this.$padding;
13967 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var height = config.lineHeight;
13968 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var top = this.$getTop(range.start.row, config);
13969 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var left = padding + range.start.column * config.characterWidth;
13970 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && extraStyle = extraStyle || "";
13971  
13972 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && stringBuilder.push(
13973 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && "<div class='", clazz, " ace_br1 ace_start' style='",
13974 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && "height:", height, "px;",
13975 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && "right:0;",
13976 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && "top:", top, "px;",
13977 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && "left:", left, "px;", extraStyle, "'></div>"
13978 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && );
13979 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && top = this.$getTop(range.end.row, config);
13980 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && var width = range.end.column * config.characterWidth;
13981  
13982 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && stringBuilder.push(
13983 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height && "
13984 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
13985 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
13986 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
13987 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
div>"
13988 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
13989 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
13990 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
13991 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
13992 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
13993  
13994 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
13995  
13996 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
13997 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
style='",
13998 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
13999 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14000 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14001 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
></div>"
14002 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14003 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14004 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14005 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14006 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14007  
14008 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14009 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14010  
14011 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14012 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14013 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14014 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14015 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14016 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
div>"
14017 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14018 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14019  
14020 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14021 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14022 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14023 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14024 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14025  
14026 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14027 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
style='",
14028 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14029 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14030 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
></div>"
14031 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14032 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14033  
14034 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14035 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14036 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14037  
14038 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14039 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14040 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14041 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14042 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
div>"
14043 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14044 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14045  
14046 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14047  
14048 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14049  
14050 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14051  
14052 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14053 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14054  
14055 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14056 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14057 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14058 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14059 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14060  
14061 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14062 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14063 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14064 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14065 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14066 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14067  
14068 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14069  
14070 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14071  
14072 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14073 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14074 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14075 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14076 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14077 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14078 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14079  
14080 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14081 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14082 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14083 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14084 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14085 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14086 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14087 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14088 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14089  
14090 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14091 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14092 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14093 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14094  
14095 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14096 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14097 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14098  
14099 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14100 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14101 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14102  
14103 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14104 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14105 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14106 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14107 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14108 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14109 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14110  
14111 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14112 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14113 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14114 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14115 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14116 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14117 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14118 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14119 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14120 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14121 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14122  
14123 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14124 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14125 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14126 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14127  
14128 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14129 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14130 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14131 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14132  
14133 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14134 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14135 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14136 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14137  
14138 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14139 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14140 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14141 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14142  
14143 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14144 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14145 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14146 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14147 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14148 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14149 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14150 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14151 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
>"
14152 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14153 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14154 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14155 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14156 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14157 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14158 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14159 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14160 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14161 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14162 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14163 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14164 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14165 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14166 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14167 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14168 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14169 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14170 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14171 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14172 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
14173  
14174 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
" + spaceContent + "span>";
14175 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
this.$tabStrings["\t"] = "<span class='" + className + tabClass + "'>" + tabContent + "</span>";
14176 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
}
14177 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
};
14178  
14179 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
this.updateLines = function(config, firstRow, lastRow) {
14180 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
if (this.config.lastRow != config.lastRow ||
14181 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
this.config.firstRow != config.firstRow) {
14182 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
this.scrollLines(config);
14183 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
}
14184 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
this.config = config;
14185  
14186 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
var first = Math.max(firstRow, config.firstRow);
14187 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
var last = Math.min(lastRow, config.lastRow);
14188  
14189 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
var lineElements = this.element.childNodes;
14190 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
var lineElementsIdx = 0;
14191  
14192 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
for (var row = config.firstRow; row < first; row++) {
14193 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { var foldLine = this.session.getFoldLine(row);
14194 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { if (foldLine) {
14195 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { if (foldLine.containsRow(first)) {
14196 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { first = foldLine.start.row;
14197 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { break;
14198 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { } else {
14199 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { row = foldLine.end.row;
14200 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { }
14201 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { }
14202 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { lineElementsIdx ++;
14203 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { }
14204  
14205 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { var row = first;
14206 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { var foldLine = this.session.getNextFoldLine(row);
14207 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { var foldStart = foldLine ? foldLine.start.row : Infinity;
14208  
14209 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { while (true) {
14210 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { if (row > foldStart) {
14211 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { row = foldLine.end.row+1;
14212 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { foldLine = this.session.getNextFoldLine(row, foldLine);
14213 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { foldStart = foldLine ? foldLine.start.row :Infinity;
14214 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { }
14215 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { if (row > last)
14216 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { break;
14217  
14218 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { var lineElement = lineElements[lineElementsIdx++];
14219 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { if (lineElement) {
14220 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { var html = [];
14221 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { this.$renderLine(
14222 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { html, row, !this.$useLineGroups(), row == foldStart ? foldLine : false
14223 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { );
14224 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { lineElement.style.height = config.lineHeight * this.session.getRowLength(row) + "px";
14225 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { lineElement.innerHTML = html.join("");
14226 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { }
14227 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { row++;
14228 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { }
14229 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { };
14230  
14231 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { this.scrollLines = function(config) {
14232 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { var oldConfig = this.config;
14233 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { this.config = config;
14234  
14235 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) { if (!oldConfig || oldConfig.lastRow < config.firstRow)
14236 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow) return this.update(config);
14237  
14238 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow) if (config.lastRow < oldConfig.firstRow)
14239 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow) return this.update(config);
14240  
14241 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow) var el = this.element;
14242 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow) if (oldConfig.firstRow < config.firstRow)
14243 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow) for (var row=this.session.getFoldedRowCount(oldConfig.firstRow, config.firstRow - 1); row>0; row--)
14244 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow) el.removeChild(el.firstChild);
14245  
14246 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow) if (oldConfig.lastRow > config.lastRow)
14247 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow) for (var row=this.session.getFoldedRowCount(config.lastRow + 1, oldConfig.lastRow); row>0; row--)
14248 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow) el.removeChild(el.lastChild);
14249  
14250 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow) if (config.firstRow < oldConfig.firstRow) {
14251 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { var fragment = this.$renderLinesFragment(config, config.firstRow, oldConfig.firstRow - 1);
14252 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { if (el.firstChild)
14253 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { el.insertBefore(fragment, el.firstChild);
14254 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { else
14255 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { el.appendChild(fragment);
14256 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { }
14257  
14258 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { if (config.lastRow > oldConfig.lastRow) {
14259 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { var fragment = this.$renderLinesFragment(config, oldConfig.lastRow + 1, config.lastRow);
14260 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { el.appendChild(fragment);
14261 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { }
14262 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { };
14263  
14264 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { this.$renderLinesFragment = function(config, firstRow, lastRow) {
14265 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { var fragment = this.element.ownerDocument.createDocumentFragment();
14266 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { var row = firstRow;
14267 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { var foldLine = this.session.getNextFoldLine(row);
14268 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { var foldStart = foldLine ? foldLine.start.row : Infinity;
14269  
14270 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { while (true) {
14271 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { if (row > foldStart) {
14272 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { row = foldLine.end.row+1;
14273 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { foldLine = this.session.getNextFoldLine(row, foldLine);
14274 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { foldStart = foldLine ? foldLine.start.row : Infinity;
14275 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { }
14276 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { if (row > lastRow)
14277 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { break;
14278  
14279 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { var container = dom.createElement("div");
14280  
14281 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { var html = [];
14282 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { this.$renderLine(html, row, false, row == foldStart ? foldLine : false);
14283 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { container.innerHTML = html.join("");
14284 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { if (this.$useLineGroups()) {
14285 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { container.className = 'ace_line_group';
14286 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { fragment.appendChild(container);
14287 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { container.style.height = config.lineHeight * this.session.getRowLength(row) + "px";
14288  
14289 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { } else {
14290 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { while(container.firstChild)
14291 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { fragment.appendChild(container.firstChild);
14292 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { }
14293  
14294 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { row++;
14295 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { }
14296 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { return fragment;
14297 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { };
14298  
14299 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { this.update = function(config) {
14300 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { this.config = config;
14301  
14302 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { var html = [];
14303 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { var firstRow = config.firstRow, lastRow = config.lastRow;
14304  
14305 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { var row = firstRow;
14306 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { var foldLine = this.session.getNextFoldLine(row);
14307 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { var foldStart = foldLine ? foldLine.start.row : Infinity;
14308  
14309 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { while (true) {
14310 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { if (row > foldStart) {
14311 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { row = foldLine.end.row+1;
14312 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { foldLine = this.session.getNextFoldLine(row, foldLine);
14313 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { foldStart = foldLine ? foldLine.start.row :Infinity;
14314 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { }
14315 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { if (row > lastRow)
14316 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { break;
14317  
14318 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { if (this.$useLineGroups())
14319 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) { html.push("
")
14320  
14321 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
this.$renderLine(html, row, false, row == foldStart ? foldLine : false);
14322  
14323 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
if (this.$useLineGroups())
14324 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
html.push("div>"); // end the line group
14325  
14326 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
row++;
14327 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
}
14328 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
this.element.innerHTML = html.join("");
14329 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
};
14330  
14331 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
this.$textToken = {
14332 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
"text": true,
14333 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
"rparen": true,
14334 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
"lparen": true
14335 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
};
14336  
14337 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
this.$renderToken = function(stringBuilder, screenColumn, token, value) {
14338 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
var self = this;
14339 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
var replaceReg = /\t|&|<|>|( +)|([\x00-\x1f\x80-\xa0\xad\u1680\u180E\u2000-\u200f\u2028\u2029\u202F\u205F\u3000\uFEFF\uFFF9-\uFFFC])|[\u1100-\u115F\u11A3-\u11A7\u11FA-\u11FF\u2329-\u232A\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3000-\u303E\u3041-\u3096\u3099-\u30FF\u3105-\u312D\u3131-\u318E\u3190-\u31BA\u31C0-\u31E3\u31F0-\u321E\u3220-\u3247\u3250-\u32FE\u3300-\u4DBF\u4E00-\uA48C\uA490-\uA4C6\uA960-\uA97C\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFAFF\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE66\uFE68-\uFE6B\uFF01-\uFF60\uFFE0-\uFFE6]/g;
14340 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
var replaceFunc = function(c, a, b, tabIdx, idx4) {
14341 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
if (a) {
14342 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
return self.showInvisibles
14343 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
? "<span class='ace_invisible ace_invisible_space'>" + lang.stringRepeat(self.SPACE_CHAR, c.length) + "</span>"
14344 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
: c;
14345 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
} else if (c == "&") {
14346 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
return "&";
14347 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
} else if (c == "<") {
14348 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") { return "<";
14349 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") { } else if (c == ">") {
14350 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") { return ">";
14351 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") { } else if (c == "\t") {
14352 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") { var tabSize = self.session.getScreenTabSize(screenColumn + tabIdx);
14353 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") { screenColumn += tabSize - 1;
14354 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") { return self.$tabStrings[tabSize];
14355 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") { } else if (c == "\u3000") {
14356 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") { var classToUse = self.showInvisibles ? "ace_cjk ace_invisible ace_invisible_space" : "ace_cjk";
14357 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") { var space = self.showInvisibles ? self.SPACE_CHAR : "";
14358 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") { screenColumn += 1;
14359 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") { return "
14360 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14361 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {" + space + "span>";
14362 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14363 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {>" + self.SPACE_CHAR + "</span>";
14364 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14365 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14366 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14367 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14368 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {" + c + "span>";
14369 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14370 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14371  
14372 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14373  
14374 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14375 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14376 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14377 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14378 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") { ";
14379 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {", style, ">", output, "</span>");
14380 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14381 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14382 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14383 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14384 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14385 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14386  
14387 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14388 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14389 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14390 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14391 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14392 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14393 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14394 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14395 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14396 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14397 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14398 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14399 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14400 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14401  
14402 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14403 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14404 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14405 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14406 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14407  
14408 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14409 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14410 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14411 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14412 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14413 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14414 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14415 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14416 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14417 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14418  
14419 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14420 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14421 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14422 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14423 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14424 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14425 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14426 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14427 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14428 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14429 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14430  
14431 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14432 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14433 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14434 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14435 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14436 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14437  
14438 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14439  
14440 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14441 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14442 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14443 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14444 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14445 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14446 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14447 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14448 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14449 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14450 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14451 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14452 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14453  
14454 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14455 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14456 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14457 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14458 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14459 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14460 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14461 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14462 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14463 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14464 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14465 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14466 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14467 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14468 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14469 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14470 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14471  
14472 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14473 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14474 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14475 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14476  
14477  
14478 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14479 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14480 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14481 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14482 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14483 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14484 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14485 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14486  
14487 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14488 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14489 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14490 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14491 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14492 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14493 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14494  
14495 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14496 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14497 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14498  
14499 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14500 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {,
14501 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14502 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14503 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14504 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14505 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14506 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14507 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14508  
14509 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14510 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14511 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14512  
14513 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14514 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14515 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14516 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14517 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14518  
14519 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14520 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14521 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14522 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14523 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14524 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14525 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14526  
14527 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14528 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14529 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14530 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14531  
14532 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14533 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14534 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14535  
14536 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14537 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14538 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14539 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14540 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14541 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14542 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14543 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14544 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14545 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14546 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14547 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14548 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14549  
14550 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14551 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14552 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14553 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14554 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14555 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14556 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14557 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14558 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14559 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14560  
14561 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14562 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14563 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14564 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14565  
14566 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14567 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14568  
14569 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14570 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14571 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14572  
14573 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14574 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14575 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14576 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14577 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14578 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14579  
14580 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14581  
14582 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14583  
14584 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14585  
14586 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14587 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14588  
14589 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14590 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14591  
14592 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14593 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14594 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14595 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14596  
14597 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14598 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14599  
14600 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14601 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14602 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14603 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14604  
14605 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14606 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14607 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14608 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14609 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14610 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14611 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14612  
14613 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14614  
14615 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14616 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14617 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14618 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14619 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14620 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14621 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14622 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14623 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14624 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14625  
14626  
14627 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14628 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14629 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14630 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14631  
14632 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14633 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14634 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14635  
14636 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14637 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14638 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14639 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14640 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14641 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14642  
14643 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14644 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14645 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14646 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14647 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14648 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14649  
14650 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14651 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14652 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14653 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14654 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14655 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14656 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14657 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14658 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14659  
14660 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14661 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14662 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14663 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14664 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14665 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14666 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14667  
14668 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14669 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14670 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14671 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14672 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14673 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14674 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14675  
14676 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14677 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14678 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14679 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14680 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14681  
14682 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14683 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14684 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14685 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14686 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14687  
14688 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14689 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14690 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14691 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14692 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14693 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14694 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14695  
14696 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14697  
14698 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14699 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14700  
14701 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14702 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14703 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14704 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14705 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14706  
14707 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14708 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14709 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14710 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14711 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14712  
14713 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14714 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14715 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14716 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14717  
14718 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14719 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14720  
14721 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14722 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14723 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14724  
14725 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14726 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14727 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14728 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14729 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14730 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14731  
14732 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14733 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14734  
14735 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14736 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14737  
14738 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14739 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14740  
14741 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14742 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14743 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14744  
14745 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14746 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14747 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14748 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14749 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14750 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14751  
14752 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14753  
14754 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14755 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14756 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14757 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14758 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14759 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14760 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14761 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14762 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14763 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14764 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14765  
14766 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14767 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14768 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14769 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14770 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14771  
14772 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14773  
14774 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14775 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14776 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14777 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14778 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14779 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14780 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14781 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14782 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14783  
14784 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14785 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14786 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14787 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14788  
14789 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14790  
14791 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14792  
14793 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14794  
14795 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14796 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14797  
14798 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14799 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14800 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14801 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14802 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14803 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14804 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14805 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14806  
14807 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14808 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14809 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14810  
14811 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14812  
14813 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14814 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14815  
14816 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14817 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14818 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14819  
14820 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14821 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14822  
14823 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14824 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14825 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14826 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14827 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14828 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14829 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14830 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14831 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14832 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14833 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14834 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14835 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14836 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14837 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14838  
14839 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14840  
14841 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14842  
14843 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {;
14844 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14845 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14846 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14847 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14848 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14849 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14850 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14851 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14852 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14853 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14854 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14855 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14856 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14857 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14858 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14859 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14860 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14861 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14862 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14863 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14864 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14865 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14866 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14867 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14868 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14869 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14870 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14871 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14872 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14873 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14874 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14875 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14876 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14877 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14878 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14879  
14880 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14881 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14882 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14883 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14884 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14885 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14886 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14887 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14888  
14889 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14890  
14891 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14892  
14893 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14894 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14895 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14896 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14897 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14898 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14899 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14900 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14901 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14902 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14903 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14904 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14905 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14906 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14907 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14908 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14909 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14910 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14911 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14912 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14913 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14914 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14915 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14916 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14917 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14918 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14919  
14920 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14921  
14922  
14923 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14924 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14925 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14926  
14927 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14928 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14929 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14930  
14931 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14932 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14933  
14934 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14935  
14936  
14937 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14938 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14939 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14940 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14941 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14942 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14943  
14944 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14945  
14946  
14947 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14948 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14949 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14950 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14951 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14952 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14953 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14954 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14955 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14956 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14957 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14958 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14959 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14960 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14961 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14962  
14963 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14964  
14965 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14966 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14967  
14968 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14969  
14970 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14971 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14972 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14973 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14974 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14975  
14976 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14977  
14978 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14979 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14980 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14981  
14982 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14983 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14984  
14985 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14986 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14987  
14988  
14989 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14990 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14991 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14992  
14993 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14994 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14995 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14996  
14997 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14998 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
14999 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15000  
15001 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15002  
15003 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15004  
15005 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15006  
15007 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15008 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15009 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15010 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15011 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15012 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15013 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15014 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15015 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15016 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15017 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15018 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15019  
15020 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15021 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15022 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15023 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15024 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15025 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15026  
15027 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15028 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15029 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15030 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15031 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15032 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15033 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15034  
15035 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15036 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15037 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15038 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15039 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15040 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15041 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15042 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15043 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15044 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15045 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15046 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15047  
15048 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15049 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15050 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15051 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15052 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15053 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15054 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15055 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15056  
15057 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15058 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15059 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15060 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15061 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15062 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15063 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15064 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15065  
15066 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15067 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15068 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15069 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15070 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15071 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15072 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15073 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15074 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15075 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15076 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15077 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15078 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15079 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15080 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15081 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15082 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15083 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15084 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15085 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15086 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15087 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15088  
15089 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15090 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15091 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15092 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15093 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15094  
15095 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15096 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15097 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15098 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15099 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15100 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15101 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15102  
15103 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15104 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15105 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15106 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15107 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15108  
15109 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15110  
15111 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15112  
15113 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15114 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15115  
15116 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15117 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15118 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15119 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15120 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15121 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15122 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15123 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15124 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15125 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15126 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15127 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15128 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15129 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15130 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15131 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15132 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {, 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', monospace;\
15133 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15134 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15135 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15136 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15137 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15138 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15139 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15140 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15141 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15142 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15143 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15144 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15145 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15146 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15147 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15148 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15149 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15150 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15151 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15152 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15153 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15154 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15155 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15156 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15157 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15158 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15159 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15160 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15161 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {;\
15162 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15163 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15164 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15165 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15166 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15167 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15168 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15169 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15170 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15171 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15172 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15173 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15174 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15175 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15176 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15177 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15178 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15179 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15180 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15181 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15182 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15183 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15184 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15185 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15186 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15187 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15188 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15189 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15190 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15191 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15192 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15193 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15194 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15195 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15196 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15197 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15198 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15199 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15200 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15201 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15202 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15203 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15204 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15205 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15206 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15207 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15208 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15209 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15210 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15211 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15212 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15213 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15214 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15215 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15216 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15217 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15218 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15219 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15220 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15221 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15222 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15223 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15224 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15225 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15226 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15227 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15228 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15229 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15230 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15231 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15232 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15233 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15234 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15235 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15236 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15237 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15238 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15239 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15240 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15241 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15242 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15243 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15244 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15245 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15246 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15247 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15248 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15249 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15250 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15251 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15252 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15253 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15254 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15255 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15256 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15257 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15258 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15259 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15260 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15261 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15262 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15263 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15264 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15265 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15266 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15267 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15268 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15269 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15270 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15271 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15272 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15273 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15274 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15275 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15276 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15277 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15278 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15279 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15280 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15281 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15282 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15283 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15284 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15285 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15286 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15287 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15288 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15289 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15290 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15291 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15292 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15293 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15294 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15295 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15296 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15297 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15298 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15299 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15300 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15301 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15302 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15303 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15304 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15305 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15306 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15307 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15308 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15309 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15310 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15311 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15312 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15313 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15314 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15315 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15316 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15317 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15318 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15319 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15320 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15321 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15322 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15323 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15324 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15325 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15326 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15327 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15328 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15329 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15330 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15331 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15332 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15333 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15334 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15335 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15336 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15337 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15338 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15339 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15340 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15341 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15342 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15343 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15344 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15345 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15346 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15347 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15348 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15349 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15350 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15351 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15352 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15353 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15354 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15355 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15356 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15357 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15358 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15359 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15360 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15361 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15362 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15363 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15364 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15365 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15366 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15367 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15368 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15369 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15370 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15371 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15372 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15373 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15374 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15375 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15376 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15377 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15378 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15379 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15380 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15381 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15382 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15383 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15384 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15385 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15386 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15387 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15388 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15389 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15390 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15391 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15392 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15393 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15394 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15395 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15396 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15397 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15398 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15399 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15400 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15401 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15402 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15403 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15404 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15405 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15406 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15407 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15408 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15409 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15410 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15411 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15412 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15413 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15414 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15415 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15416 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15417 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15418 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15419 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15420 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15421 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15422 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15423 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15424 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15425 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15426 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15427 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15428 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15429 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15430 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15431 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15432 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15433 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15434 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15435 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15436 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15437 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15438 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15439 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15440 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15441 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15442 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15443 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15444 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15445 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15446 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15447 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15448 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15449 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15450 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15451 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15452 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15453 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15454 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15455 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15456 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15457 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15458 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15459 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15460 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15461 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15462 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15463 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15464 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15465 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15466 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15467 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15468 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15469 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15470 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15471 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15472 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15473 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15474 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15475 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15476 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15477 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15478 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15479 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15480 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15481 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15482 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15483 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15484 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15485 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15486 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15487 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15488 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15489 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15490 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15491 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15492 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15493 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15494 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15495 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15496 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15497 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15498 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15499 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15500 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15501 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15502 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15503  
15504 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15505  
15506 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15507 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15508  
15509 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15510 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15511  
15512 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15513  
15514 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15515  
15516 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15517 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15518 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15519  
15520 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15521 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15522 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15523  
15524 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15525 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15526 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15527  
15528 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15529 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15530  
15531 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15532  
15533 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15534 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15535  
15536 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15537  
15538 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15539 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15540 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15541  
15542 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15543 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15544 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15545 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15546 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15547 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15548 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15549 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15550 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15551 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15552 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15553  
15554 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15555 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15556  
15557 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15558 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15559 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15560 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15561  
15562 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15563 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15564 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15565 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15566 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15567 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15568 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15569  
15570 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15571 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15572 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15573 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15574 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15575 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15576 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15577  
15578 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15579 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15580 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15581 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15582 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15583 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15584 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15585 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15586 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15587 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15588 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15589 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15590 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15591 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15592  
15593 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15594 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15595 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15596 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15597 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15598 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15599 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15600 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15601  
15602 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15603 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15604 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15605 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15606 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15607  
15608 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15609 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15610 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15611 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15612 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15613  
15614 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15615  
15616 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15617 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15618 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15619 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15620 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15621 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15622 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15623 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15624 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15625 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15626 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15627  
15628 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15629  
15630 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15631 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15632 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15633 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15634 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15635  
15636 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15637 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15638 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15639 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15640 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15641 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15642 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15643 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15644 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15645  
15646 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15647 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15648 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15649  
15650 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15651 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15652 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15653 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15654 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15655 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15656 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15657  
15658 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15659 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15660 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15661  
15662 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15663 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15664 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15665 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15666 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15667 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15668 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15669  
15670 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15671 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15672 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15673 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15674 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15675 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15676 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15677 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15678 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15679  
15680 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15681 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15682 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15683 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15684 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15685 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15686 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15687 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15688 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15689 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15690 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15691 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15692 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15693  
15694 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15695 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15696 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15697 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15698  
15699 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15700 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15701 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15702 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15703 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15704 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15705 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15706 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15707 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15708 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15709 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15710 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15711 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15712 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15713 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15714 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15715  
15716 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15717 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15718 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15719 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15720 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15721 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15722 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15723 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15724 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15725 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15726 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15727 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15728 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15729 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15730 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15731 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15732 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15733 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15734 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15735 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15736  
15737  
15738 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15739 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15740  
15741 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15742 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15743  
15744 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15745 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15746 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15747 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15748  
15749 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15750 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15751 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15752 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15753  
15754 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15755 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15756 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15757 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15758 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15759 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15760 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15761 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15762 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15763 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15764 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15765 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15766 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15767  
15768 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15769 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15770 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15771 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15772  
15773 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15774 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15775  
15776 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15777 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15778 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15779  
15780 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15781 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15782  
15783 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15784  
15785 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15786 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15787 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15788  
15789 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15790 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15791 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15792  
15793 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15794 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15795 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15796  
15797 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15798  
15799 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15800 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15801  
15802 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15803 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15804  
15805 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15806 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15807 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15808 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15809  
15810 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15811 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15812 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15813 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15814 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15815 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15816 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15817 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15818 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15819 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15820 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15821 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15822 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15823 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15824 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15825 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15826 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15827 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15828 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15829 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15830 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15831 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15832 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15833 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15834 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15835 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15836 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15837 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15838 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15839  
15840 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15841 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15842 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15843 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15844 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15845 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15846 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15847 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15848 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15849 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15850 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15851 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15852 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15853 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15854 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15855 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15856 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15857 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15858 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15859 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15860 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15861  
15862 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15863 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15864 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15865  
15866 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15867 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15868 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15869  
15870 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15871 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15872 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15873  
15874 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15875 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15876 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15877  
15878 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15879 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15880 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15881 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15882 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15883 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15884 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15885 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15886 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15887 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15888 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15889 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15890  
15891 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15892 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15893 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15894  
15895 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15896 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15897 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15898 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15899 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15900 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15901 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15902 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15903  
15904 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15905 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15906 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15907  
15908 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15909 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15910 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15911 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15912 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15913 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15914 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15915 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15916 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15917 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15918 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15919 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15920 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15921 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15922 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15923 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15924 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15925 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15926 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15927  
15928 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15929 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15930 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15931 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15932 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15933 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15934  
15935 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15936 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15937 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15938 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15939 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15940 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15941 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15942 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15943 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15944  
15945 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15946 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15947 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15948 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15949 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15950 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15951 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15952 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15953 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15954 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15955 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15956 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15957 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15958 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15959 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15960 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15961 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15962 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15963 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15964 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15965 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15966 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15967 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15968  
15969 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15970 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15971 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15972 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15973 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15974 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15975 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15976 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15977 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15978 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15979  
15980 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15981 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15982 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15983 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15984 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15985 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15986 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15987 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15988 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15989 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15990 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15991 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15992 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15993 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15994 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15995 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15996 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15997 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15998 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
15999 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16000 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16001 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16002 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16003 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16004  
16005 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16006 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16007 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16008 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16009 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16010 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16011 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16012 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16013 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16014 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16015 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16016 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16017 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16018 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16019 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16020 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16021 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16022  
16023 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16024 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16025 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16026 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16027  
16028 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16029 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16030 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16031  
16032 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16033 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16034 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16035 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16036 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16037 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16038 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16039 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16040 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16041 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16042 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16043 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16044 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16045 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16046 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16047 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16048  
16049 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16050 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16051 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16052 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16053 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16054 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16055 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16056 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16057 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16058 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16059 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16060 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16061 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16062 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16063 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16064 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16065 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16066 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16067 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16068 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16069 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16070 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16071 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16072 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16073 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16074 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16075 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16076 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16077 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16078 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16079 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16080 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16081 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16082 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16083 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16084 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16085 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16086 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16087 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16088 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16089 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16090 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16091 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16092 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16093 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16094 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16095 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16096 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16097  
16098 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16099 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16100 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16101 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16102 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16103 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16104 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16105 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16106 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16107 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16108  
16109 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16110 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16111 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16112 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16113 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16114 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16115 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16116 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16117 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16118 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16119 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16120 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16121 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16122  
16123 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16124 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16125 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16126 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16127 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16128  
16129 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16130 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16131 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16132  
16133 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16134 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16135 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16136  
16137 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16138 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16139  
16140  
16141 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16142 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16143 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16144 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16145 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16146 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16147 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16148 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16149 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16150 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16151 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16152  
16153 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16154 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16155 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16156 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16157 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16158 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16159  
16160 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16161 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16162 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16163 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16164  
16165 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16166 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16167 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16168  
16169 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16170 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16171 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16172  
16173 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16174 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16175 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16176  
16177 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16178  
16179 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16180 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16181  
16182 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16183 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16184 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16185 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16186 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16187 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16188 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16189 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16190  
16191 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16192 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16193  
16194 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16195 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16196 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16197 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16198  
16199 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16200 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16201 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16202  
16203 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16204 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16205  
16206 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16207 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16208 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16209 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16210 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16211 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16212 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16213  
16214 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16215 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16216 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16217 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16218 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16219 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16220 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16221 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16222 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16223 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16224  
16225 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16226 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16227  
16228 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16229 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16230 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16231  
16232 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16233  
16234 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16235 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16236 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16237 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16238 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16239 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16240 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16241 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16242 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16243  
16244 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16245 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16246 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16247 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16248 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16249 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16250 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16251 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16252 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16253 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16254 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16255 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16256 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16257 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16258  
16259 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16260 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16261  
16262 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16263 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16264 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16265 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16266  
16267 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16268  
16269 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16270 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16271 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16272 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16273 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16274 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16275 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16276 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16277 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16278 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16279 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16280  
16281 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16282 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16283 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16284 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16285  
16286 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16287 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16288 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16289 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16290 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16291 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16292 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16293 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16294 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16295 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16296 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16297 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16298 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16299 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16300 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16301 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16302 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16303 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16304 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16305 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16306 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16307 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16308 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16309 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16310 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16311 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16312 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16313 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16314 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16315 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16316 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16317 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16318  
16319 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16320 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16321 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16322 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16323 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16324 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16325 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16326  
16327 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16328  
16329 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16330 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16331  
16332 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16333 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16334  
16335 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16336  
16337 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16338 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16339 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16340 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16341 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16342 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16343 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16344 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16345 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16346 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16347 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16348  
16349 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16350  
16351 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16352 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16353 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16354 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16355 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16356 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16357 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16358 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16359 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16360 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16361 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16362 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16363 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16364 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16365 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16366 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16367 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16368 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16369 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16370 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16371 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16372 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16373 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16374 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16375 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16376  
16377 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16378 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16379 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16380  
16381 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16382 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16383 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16384  
16385 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16386 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16387 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16388  
16389 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16390 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16391 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16392 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16393 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16394  
16395 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16396 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16397 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16398  
16399 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16400 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16401  
16402 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16403 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16404 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16405 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16406 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16407 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16408 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16409  
16410 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16411 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16412 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16413 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16414 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16415  
16416 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16417 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16418 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16419 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16420 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16421  
16422 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16423 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16424  
16425 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16426 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16427 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16428 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16429 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16430 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16431 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16432 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16433  
16434 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16435 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16436  
16437 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16438  
16439 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16440 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16441 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16442 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16443 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16444 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16445 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16446 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16447 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16448 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16449 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16450 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16451 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16452 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16453 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16454 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16455 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16456 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16457 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16458 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16459 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16460 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16461 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16462 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16463 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16464 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16465 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16466 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16467 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16468 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16469 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16470 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16471 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16472 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16473 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16474 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16475 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16476 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16477 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16478 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16479 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16480 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16481 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16482 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16483 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16484 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16485 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16486 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16487  
16488 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16489 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16490  
16491 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16492 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16493 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16494  
16495 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16496 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16497  
16498 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16499 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16500  
16501 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16502 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16503 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16504  
16505 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16506  
16507 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16508 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16509 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16510 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16511 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16512  
16513 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16514 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16515  
16516 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16517 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16518 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16519 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16520 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16521 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16522 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16523 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16524 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16525 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16526 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16527 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16528 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16529 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16530 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16531 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16532 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16533  
16534 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16535 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16536 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16537 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16538 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16539 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16540 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16541 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16542 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16543 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16544 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16545  
16546 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16547 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16548 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16549 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16550 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16551 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16552 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16553 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16554 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {,{theme:theme});
16555  
16556 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16557 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16558 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16559 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16560 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16561 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16562  
16563 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16564 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16565 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16566 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16567 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") { + theme + " or it didn't call define");
16568 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16569 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16570 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16571 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16572 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16573  
16574 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16575 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16576  
16577 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16578 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16579 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16580 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16581 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16582  
16583 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16584 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16585 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16586 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16587 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16588 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16589 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16590  
16591 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {, {theme:module});
16592 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16593 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16594 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16595 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16596 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16597 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16598 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16599 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16600 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16601 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16602 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16603 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16604  
16605 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16606 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16607 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16608 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16609 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16610 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16611 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16612 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16613 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16614 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16615 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16616  
16617 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16618  
16619  
16620 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16621 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16622 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16623 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16624 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16625 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16626 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16627 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16628 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16629 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16630 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16631 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16632 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16633 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16634 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16635 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16636 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16637 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16638 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16639 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16640 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16641 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16642 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16643 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16644 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16645 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16646 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16647 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16648 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16649 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16650 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16651 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16652 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16653 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16654 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16655 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16656 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16657 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16658 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16659 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16660 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16661 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16662 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16663 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16664 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16665 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16666 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16667 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16668 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16669 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16670 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16671 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16672 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16673 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16674 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16675 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16676 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16677 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16678 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16679 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16680 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16681 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16682 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16683 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16684 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16685 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16686 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16687 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16688  
16689 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16690 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16691 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16692 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16693 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16694 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16695 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16696 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16697 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16698 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16699 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16700 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16701 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16702 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16703 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16704 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16705 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16706 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16707 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16708 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16709 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16710 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16711 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16712 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16713 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16714 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16715 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16716 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16717 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16718 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16719 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16720 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16721 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16722 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16723 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16724 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16725 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16726 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16727 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16728 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16729 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16730 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16731 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16732 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16733 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16734 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16735 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16736 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16737 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16738 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16739 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16740 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16741 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16742 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16743 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16744 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16745 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16746 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16747 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16748 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16749 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16750 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16751 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16752 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16753 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16754 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16755 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16756 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16757 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16758 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16759 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16760 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16761 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16762 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16763 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16764 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16765  
16766 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16767 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16768  
16769 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16770 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16771  
16772 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16773 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16774 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16775 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16776  
16777 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16778 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16779 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16780 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16781 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16782 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16783  
16784 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16785 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16786 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16787 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16788 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16789  
16790 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16791 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16792 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16793 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16794 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16795  
16796 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16797 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16798 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16799 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16800 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16801 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16802 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16803  
16804 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16805 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16806 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16807 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16808 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16809 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16810 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16811 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16812 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16813 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16814 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16815 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16816  
16817 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16818 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16819  
16820 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16821 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16822  
16823 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16824  
16825 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16826  
16827 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16828 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16829 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16830 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16831 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16832 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16833 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16834 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16835 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16836 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16837 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16838 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16839 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16840 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16841 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16842 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16843 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16844 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16845 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16846 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16847 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16848  
16849 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16850 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16851 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16852  
16853 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16854 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16855 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16856  
16857 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16858 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16859 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16860 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16861 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16862 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16863 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16864 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16865 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16866  
16867 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16868 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16869 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16870  
16871 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16872 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16873 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16874 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16875 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16876 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16877 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16878 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16879  
16880 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16881 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16882 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16883 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16884 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16885 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16886 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16887 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16888  
16889 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16890 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16891 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16892  
16893 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16894 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16895 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16896 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16897  
16898 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16899 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16900 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16901 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16902 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16903 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16904 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16905 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16906 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16907 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16908  
16909 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16910 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16911 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16912 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16913 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16914 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16915 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16916 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16917 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16918  
16919 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16920 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") { + net.qualifyURL(workerUrl) + "');";
16921 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16922 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16923 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16924 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16925 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16926 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16927 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16928 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16929 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16930  
16931 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16932  
16933  
16934 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16935 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16936 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16937 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16938 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16939 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16940  
16941 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16942 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16943 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16944 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16945  
16946 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16947 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16948 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16949 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16950 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16951 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16952 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16953 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16954 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16955 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16956 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16957 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16958  
16959 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16960 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16961 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16962 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16963 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16964 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16965 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16966  
16967 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16968 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16969 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16970 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16971 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16972 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16973 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16974 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16975 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16976  
16977 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16978 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16979 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16980 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16981 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16982 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16983  
16984 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16985  
16986 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16987 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16988  
16989 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16990  
16991 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16992 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16993  
16994 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16995 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16996 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16997  
16998 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
16999 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17000 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17001 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17002 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17003 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17004 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17005 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17006 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17007 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17008  
17009 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17010 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17011 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17012 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17013 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17014  
17015 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17016 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17017 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17018 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17019  
17020 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17021 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17022  
17023 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17024  
17025 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17026 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17027 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17028 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17029 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17030  
17031 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17032 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17033 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17034  
17035 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17036 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17037 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17038 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17039 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17040 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17041 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17042 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17043 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17044 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17045 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17046 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17047 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17048 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17049 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17050 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17051 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17052 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17053 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17054 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17055 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17056 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17057 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17058 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17059 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17060 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17061 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17062 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17063 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17064 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17065 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17066 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17067 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17068  
17069 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17070 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17071 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17072 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17073 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17074 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17075 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17076  
17077 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17078  
17079 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17080 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17081  
17082 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17083 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {) {
17084 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17085 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17086 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17087 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17088 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17089 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {) {
17090 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17091 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17092 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17093 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17094 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17095 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17096 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17097  
17098 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17099 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17100 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17101  
17102 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17103 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17104 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17105 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17106 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17107 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17108  
17109 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17110 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17111 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17112 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17113 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17114 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17115 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17116 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17117 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17118 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17119 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17120 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17121 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17122  
17123 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17124 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17125 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17126 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17127 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17128 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17129 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17130 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17131 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17132 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17133 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17134 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17135 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17136 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17137 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17138 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17139 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17140 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17141 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17142 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17143 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17144 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17145 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17146 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17147 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17148 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17149 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17150 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17151 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17152 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17153 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17154  
17155  
17156 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17157 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17158  
17159 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17160  
17161 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17162 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17163 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17164 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17165 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17166  
17167 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17168 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17169 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17170 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17171 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17172 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17173 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17174  
17175 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17176 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17177  
17178 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17179 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17180 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17181 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17182  
17183 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17184 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17185 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17186 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17187 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17188  
17189 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17190 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17191  
17192 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17193 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17194 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17195 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17196 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17197 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17198  
17199 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17200 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17201 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17202 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17203 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17204  
17205 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17206 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17207 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17208  
17209 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17210 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17211 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17212 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17213 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17214 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17215 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17216 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17217 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17218 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17219 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17220 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17221 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17222 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17223 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17224  
17225 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17226 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17227 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17228  
17229 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17230 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17231 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17232  
17233 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17234 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17235 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17236 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17237  
17238 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17239  
17240  
17241 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17242 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17243  
17244 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17245 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17246 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17247 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17248 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17249 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17250 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17251  
17252 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17253 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17254 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17255 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17256 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17257 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17258 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17259 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17260 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17261 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17262 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17263 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17264 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17265 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17266  
17267 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17268 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17269 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17270 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17271 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17272 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17273 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17274 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17275  
17276 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17277 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17278 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17279  
17280 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17281 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17282 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17283  
17284 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17285 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17286 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17287 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17288 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17289 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17290 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17291 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17292 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17293 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17294 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17295 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17296 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17297 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17298 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17299  
17300 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17301 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17302 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17303 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17304 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17305  
17306 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17307  
17308 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17309 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17310 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17311 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17312 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17313 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17314 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17315 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17316 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17317 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17318 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17319 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17320 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17321 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17322 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17323 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17324  
17325 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17326  
17327 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17328 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17329  
17330 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17331 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17332 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17333  
17334  
17335 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17336  
17337 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17338  
17339 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17340 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17341 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17342 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17343 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17344 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17345 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17346 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17347 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17348 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17349 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17350 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17351 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17352 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17353 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17354 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17355 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17356 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17357 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17358 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17359 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17360 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17361 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17362 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17363 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17364 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17365 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17366 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17367 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17368 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17369 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17370 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17371 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17372 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17373 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17374 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17375 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17376 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17377 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17378 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17379 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17380 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17381 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17382 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17383 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17384 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17385 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17386 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17387 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17388 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17389 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17390 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17391 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17392 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17393 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17394 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17395 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17396 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17397 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17398 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17399 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17400 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17401 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17402 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17403 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17404 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17405 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17406 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17407 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17408 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17409 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17410 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17411 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17412 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17413  
17414 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17415 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17416  
17417 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17418  
17419 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17420  
17421 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17422 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17423 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17424 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17425 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17426 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17427 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17428 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17429 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17430 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17431  
17432 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17433 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17434 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17435 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17436 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17437 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17438 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17439 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17440 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17441 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17442 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17443 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17444 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17445 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17446 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17447 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17448 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17449 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17450  
17451 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17452 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17453 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17454 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17455 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17456 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17457 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17458 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17459 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17460 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17461 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17462 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17463  
17464 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17465 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17466  
17467 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17468  
17469 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17470  
17471 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17472 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17473  
17474 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17475 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17476 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17477 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17478 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17479 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17480  
17481 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17482 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17483  
17484 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17485 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17486 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17487 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17488 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17489  
17490 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17491 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17492 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17493 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17494 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17495 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17496 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17497 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17498 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17499 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17500 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17501 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17502 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17503 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17504 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17505 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17506  
17507 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17508 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17509 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17510 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17511 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17512  
17513 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17514 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17515 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17516 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17517 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17518 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17519 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17520  
17521 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17522 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17523 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17524 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17525  
17526 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17527  
17528 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17529 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17530 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17531 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17532 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17533 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17534  
17535 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17536 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17537 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17538 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17539 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17540 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17541 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17542  
17543 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17544 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17545 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17546 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17547 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17548 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17549 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17550  
17551 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17552 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17553 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17554 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17555 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17556  
17557 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17558 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17559 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17560 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17561 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17562 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17563 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17564 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17565 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17566 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17567 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17568 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17569  
17570 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17571 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17572 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17573 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17574  
17575 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17576 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17577 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17578 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17579  
17580 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17581 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17582  
17583 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17584 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17585 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17586  
17587 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17588 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17589 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17590 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17591 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17592 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17593 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17594 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17595  
17596 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17597 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17598 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17599 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17600 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17601  
17602 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17603 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17604 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17605 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17606 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17607 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17608  
17609 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17610 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17611 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17612 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17613 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17614 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17615 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17616 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17617  
17618 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17619 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17620 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17621 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17622 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17623 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17624 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17625 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17626  
17627 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17628 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17629 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17630 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17631  
17632 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17633 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17634  
17635 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17636 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17637 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17638 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17639 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17640 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17641 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17642 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17643 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17644 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17645 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17646 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17647 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17648  
17649 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17650 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17651  
17652 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17653 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17654 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17655 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17656 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17657 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17658 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17659 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17660 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17661 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17662 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17663 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17664 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17665 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17666  
17667 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17668 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17669 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17670 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17671 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17672 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17673 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17674 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17675 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17676 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17677 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17678 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17679  
17680 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17681 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17682  
17683 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17684 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17685 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17686 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17687 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17688 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17689 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17690 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17691 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17692 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17693 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17694 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17695 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17696  
17697 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17698 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17699 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17700 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17701 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17702 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17703 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17704 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17705 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17706 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17707 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17708 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17709 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17710  
17711 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17712 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17713 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17714 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17715 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17716  
17717 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17718 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17719 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17720 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17721 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17722  
17723 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17724 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17725 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17726 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17727  
17728 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17729 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17730 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17731  
17732 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17733 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17734 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17735  
17736 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17737 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17738 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17739 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17740  
17741 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17742 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17743  
17744 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17745 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17746 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17747 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17748 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17749  
17750 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17751 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17752 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17753 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17754 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17755 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17756 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17757 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17758 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17759 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17760 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17761 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17762 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17763 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17764 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17765 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17766 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17767 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17768 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17769 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17770 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17771 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17772 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17773 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17774 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17775 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17776 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17777 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17778 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17779 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17780 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17781  
17782 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17783 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17784  
17785 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17786 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17787  
17788 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17789 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17790 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17791 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17792 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17793 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17794 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17795 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17796 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17797 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17798 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17799 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17800 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17801 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17802 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17803 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17804  
17805 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17806 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17807 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17808 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17809  
17810 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17811 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17812 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17813 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17814 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17815  
17816 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17817 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17818 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17819 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17820 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17821 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17822 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17823  
17824 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17825 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17826 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17827 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17828 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17829 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17830 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17831 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17832 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17833 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17834 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17835 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17836 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17837 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17838 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17839 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17840 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17841  
17842 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17843 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17844 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17845 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17846 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17847 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17848 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17849 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17850 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17851 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17852 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17853 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17854 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17855 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17856 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17857 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17858 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17859 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17860 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17861 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17862 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17863 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17864 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17865  
17866 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17867 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17868 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17869  
17870 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17871 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17872  
17873 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17874 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17875  
17876 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17877 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17878 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17879 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17880  
17881 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17882  
17883 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17884 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17885 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17886 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17887 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17888  
17889 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17890 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17891 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17892  
17893 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17894  
17895 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17896 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17897 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17898 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17899 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17900 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17901  
17902 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17903 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17904 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17905 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17906 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17907 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17908 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17909  
17910 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17911 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17912 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17913 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17914 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17915 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17916 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17917  
17918 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17919 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17920 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17921 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17922 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17923 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17924 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17925 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17926  
17927 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17928 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17929 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17930 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17931 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17932 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17933 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17934 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17935 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17936 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17937 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17938  
17939 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17940 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17941 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17942 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17943 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17944  
17945 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17946 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17947 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17948 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17949  
17950 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17951 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17952 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17953 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17954 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17955 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17956 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17957 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17958 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17959 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17960 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17961  
17962 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17963 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17964 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17965 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17966 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17967 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17968 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17969 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17970 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17971  
17972 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17973 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17974 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17975 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17976 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17977 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17978 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17979 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17980 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17981 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17982 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17983 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17984 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17985 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17986 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17987 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17988 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17989 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17990 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17991 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17992 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17993 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17994  
17995 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17996 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17997 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17998 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
17999 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18000 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18001 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18002 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18003 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18004 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18005 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18006 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18007 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18008  
18009 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18010 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18011 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18012 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18013 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18014 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18015 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18016 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18017 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18018 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18019 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18020 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18021 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18022 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18023 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18024  
18025 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18026 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18027 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18028 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18029 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18030 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18031 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18032 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18033  
18034 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18035 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18036 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18037 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18038 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18039 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18040 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18041 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18042 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18043 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18044 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18045 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18046 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18047 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18048  
18049 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18050 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18051 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18052 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18053 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18054 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18055 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18056 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18057 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18058  
18059 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18060 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18061 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18062  
18063 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18064 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18065 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18066 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18067  
18068 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18069 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18070 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18071 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18072 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18073 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18074  
18075 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18076 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18077 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18078 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18079  
18080 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18081 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18082 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18083 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18084 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18085 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18086  
18087 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18088 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18089 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18090  
18091 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18092 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18093 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18094  
18095 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18096 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18097 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18098 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18099 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18100 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18101 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18102 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18103 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18104 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18105 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18106 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18107 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18108 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18109 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18110 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18111 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18112  
18113  
18114 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18115 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18116 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18117 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18118 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18119 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18120 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18121 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18122 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18123 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18124 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18125  
18126 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18127 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18128 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18129 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18130 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18131 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18132 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18133 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18134 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18135  
18136 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18137 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18138 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18139 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18140 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18141 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18142 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18143 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18144  
18145 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18146 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18147 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18148 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18149 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18150 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18151 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18152 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18153 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18154 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18155 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18156 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18157 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18158 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18159 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18160 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18161  
18162 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18163 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18164  
18165 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18166 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18167  
18168 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18169 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18170  
18171 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18172 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18173 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18174 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18175 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18176 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18177 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18178 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18179 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18180 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18181 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18182 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18183 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18184 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18185  
18186 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18187 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18188 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18189 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18190 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18191 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18192 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18193 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18194 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18195  
18196 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18197  
18198  
18199 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18200 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18201 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18202 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18203 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18204 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18205 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18206 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18207 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18208 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18209 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18210 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18211 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18212 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18213 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18214 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18215 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18216 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18217 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18218 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18219 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18220  
18221  
18222  
18223 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18224  
18225 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18226 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18227  
18228 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18229  
18230 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18231  
18232 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18233  
18234 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18235 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18236 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18237 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18238 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18239 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18240 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18241 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18242 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18243 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18244 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18245 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18246  
18247 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18248 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18249 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18250  
18251 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18252 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18253 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18254 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18255 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18256 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18257  
18258 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18259 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18260 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18261 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18262  
18263 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18264 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18265  
18266 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18267 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18268  
18269 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18270 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18271  
18272 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18273 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18274  
18275 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18276 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18277 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18278 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18279 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18280  
18281 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18282 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18283 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18284 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18285 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18286  
18287 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18288 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18289 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18290  
18291 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18292 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18293 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18294 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18295 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18296 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18297  
18298 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18299 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18300 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18301  
18302 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18303 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18304  
18305 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18306 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18307  
18308 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18309 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18310 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18311  
18312 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18313  
18314 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18315 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18316  
18317 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18318 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18319 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18320 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18321 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18322 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18323 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18324 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18325 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18326 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18327 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18328 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18329 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18330 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18331 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18332 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18333 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18334 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18335 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18336 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18337 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18338 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18339 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18340 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18341 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18342 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18343 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18344 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18345 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18346 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18347 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18348 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18349 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18350 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18351 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18352 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18353 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18354 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18355 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18356 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18357 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18358 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18359 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18360 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18361 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18362 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18363 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18364 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18365 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18366 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18367 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18368 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18369 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18370 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18371 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18372 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18373 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18374 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18375 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18376 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18377 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18378 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18379 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18380 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18381 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18382 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18383 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18384 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18385 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18386 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18387 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18388 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18389 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18390 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18391 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18392 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18393 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18394 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18395 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18396 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18397 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18398 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18399 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18400 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18401 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18402 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18403 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18404 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18405 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18406 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18407 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18408 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18409 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18410 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18411 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18412 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18413 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18414 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18415 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18416 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18417 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18418 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18419 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18420 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18421 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18422 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18423 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18424 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18425 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18426 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18427 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18428 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18429 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18430 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18431 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18432 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18433 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18434 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18435 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18436 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18437 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18438 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18439  
18440 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18441 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18442 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18443  
18444 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18445 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18446  
18447 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18448 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18449 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18450  
18451  
18452 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18453 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18454 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18455 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18456 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18457 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18458 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18459 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18460 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18461 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18462  
18463 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18464 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18465 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18466 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18467  
18468 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18469 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18470 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18471 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18472 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18473 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18474 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18475 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18476 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18477 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18478 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18479 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18480 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18481  
18482 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18483 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18484 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18485 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18486 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18487 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18488 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18489 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18490  
18491 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18492 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18493 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18494  
18495 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18496 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18497 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18498  
18499 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18500 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18501  
18502 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18503 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18504  
18505 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18506 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18507 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18508 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18509 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18510 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18511 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18512 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18513 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18514 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18515  
18516 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18517 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18518  
18519 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18520 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18521 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18522 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18523 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18524 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18525 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18526 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18527 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18528 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18529  
18530 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18531 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18532 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18533 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18534 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18535 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18536 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18537 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18538 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18539 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18540 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18541 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18542 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18543 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18544 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18545 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18546 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18547 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18548 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18549 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18550 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18551 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18552 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18553 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18554 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18555  
18556 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18557 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18558 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18559  
18560 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18561 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18562  
18563 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18564 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {) {
18565 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18566 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18567 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18568 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18569 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18570 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18571 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18572 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18573 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18574 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18575 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18576 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18577  
18578 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18579 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18580 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18581 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18582 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18583 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18584 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18585 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18586 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18587 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18588 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18589 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18590 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18591 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18592 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18593 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18594 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18595  
18596 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18597 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18598 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18599  
18600 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18601 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18602 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18603 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18604 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18605 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18606 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18607 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18608  
18609 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18610  
18611 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18612  
18613 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18614 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18615 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18616 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18617 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18618 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18619 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18620 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18621 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18622 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18623 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18624 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18625  
18626 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18627 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18628 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18629 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18630 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18631 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18632 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18633 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18634 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18635  
18636 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18637 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18638 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18639 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18640 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18641 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18642 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18643 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18644 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18645  
18646 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18647  
18648 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18649 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18650 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18651 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18652 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18653  
18654 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18655 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18656 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18657 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18658 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18659 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18660 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18661 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18662 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18663 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18664 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18665 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18666 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18667 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18668 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18669 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18670 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18671 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18672 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18673 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18674 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18675 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18676 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18677 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18678 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18679 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18680 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18681  
18682 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18683 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18684 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18685 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18686 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18687 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18688 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18689 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18690 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18691 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18692  
18693 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18694 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18695 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18696 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18697  
18698 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18699 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18700 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18701  
18702 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18703 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18704 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18705 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18706 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18707 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18708 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18709 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18710 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18711 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18712 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18713 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18714  
18715 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18716  
18717 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18718 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18719 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18720 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18721  
18722 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18723 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18724 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18725 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18726 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18727 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18728 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18729 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18730 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18731 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18732 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18733 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18734 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18735 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18736 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18737 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18738 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18739 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18740  
18741 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18742 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18743 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18744 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18745 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18746 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18747 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18748  
18749 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18750 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18751  
18752 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18753 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18754  
18755 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18756 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18757 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18758 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18759 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18760 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18761 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18762 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18763 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18764 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18765 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18766 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18767 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18768 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18769 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18770 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18771  
18772 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18773 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18774 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18775 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18776  
18777 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18778 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18779 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18780  
18781 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18782 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18783 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18784 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18785 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18786 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18787 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18788  
18789 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18790  
18791  
18792 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18793  
18794 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18795  
18796 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18797 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18798 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18799 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18800 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18801  
18802 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18803 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18804 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18805  
18806 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18807 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18808 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18809 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18810 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18811 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18812 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18813 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18814 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18815 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18816 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18817 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18818  
18819 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18820 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18821 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18822 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18823  
18824 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18825 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18826 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18827  
18828 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18829 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18830 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18831 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18832  
18833 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18834 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18835 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18836  
18837 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18838 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18839 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18840 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18841 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18842 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18843 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18844  
18845  
18846 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18847 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18848 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18849 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18850 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18851 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18852 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18853 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18854  
18855 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18856 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18857 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18858 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18859 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18860 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18861  
18862 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18863 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18864 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18865 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18866 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18867 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18868 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18869 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18870 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18871 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18872 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18873 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18874 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18875 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18876 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18877 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18878 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18879 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18880 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18881 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18882 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18883 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18884 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18885 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18886 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18887 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18888 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18889 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18890 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18891  
18892 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18893 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18894 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18895 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18896 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18897 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18898 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18899 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18900 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18901 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18902  
18903 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18904 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18905 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18906  
18907 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18908 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18909 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18910  
18911 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18912  
18913 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18914 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18915 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18916 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18917 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18918 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18919  
18920 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18921 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18922 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18923 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18924 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18925 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18926 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18927 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18928 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18929 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18930  
18931 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18932 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18933 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18934 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18935 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18936  
18937 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18938  
18939 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18940  
18941 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18942 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18943  
18944  
18945 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18946 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18947 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18948 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18949 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18950 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18951 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18952 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18953 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18954 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18955 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18956 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18957 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18958 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18959 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18960 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18961 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18962 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18963 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18964 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18965 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18966 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18967 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18968 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18969 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18970 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18971 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18972 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18973 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18974 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18975 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18976 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18977 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18978 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18979  
18980 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18981  
18982 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18983 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18984  
18985 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18986  
18987 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18988 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18989  
18990 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18991 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18992 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18993 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18994 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18995 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18996 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18997 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18998 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
18999 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19000 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19001  
19002 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19003 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19004  
19005 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19006 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19007 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19008 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19009 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19010 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19011 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19012 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19013 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19014  
19015 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19016 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19017  
19018 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19019 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19020 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19021 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19022 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19023 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19024 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19025 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19026 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19027 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19028  
19029 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19030  
19031 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19032 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19033  
19034 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19035 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19036 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19037 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19038 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19039 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19040 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19041 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19042 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19043 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19044 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19045 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19046 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19047 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19048 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19049 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19050 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19051 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19052 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19053 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19054 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19055 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19056 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19057 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19058 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19059 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19060 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19061 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19062 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19063 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19064 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19065 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19066 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19067 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19068 < 50)<= 93)) {< 0) {<= this.end.row;< folds.length; i++) {< this.folds.length; i++) {< folds.length; i++) {< folds.length; i++) {< this.folds.length; i++) {< 0) {< 0) {<= hi) {< c)< tokens.length; i++) {< docRow) {< foldData.length; i++) {< lastRow) {< str.length; column++) {< 0x1100)<= 0x115F ||<= 0x11A7 ||<= 0x11FF ||<= 0x232A ||<= 0x2E99 ||<= 0x2EF3 ||<= 0x2FD5 ||<= 0x2FFB ||<= 0x303E ||<= 0x3096 ||<= 0x30FF ||<= 0x312D ||<= 0x318E ||<= 0x31BA ||<= 0x31E3 ||<= 0x321E ||<= 0x3247 ||<= 0x32FE ||<= 0x4DBF ||<= 0xA48C ||<= 0xA4C6 ||<= 0xA97C ||<= 0xD7A3 ||<= 0xD7C6 ||<= 0xD7FB ||<= 0xFAFF ||<= 0xFE19 ||<= 0xFE52 ||<= 0xFE66 ||<= 0xFE6B ||<= 0xFF60 ||<= 0xFFE6;<= config.firstRow) {<'){<'){<= 0);<= lineCols && /< 2 || !lines[1])< line.length) {< range.end.row) {< range.end.column) {<= rows.last; i++)< b.toLowerCase()) return -1;<= rows.last; i++) {< column) {<= column && m.index+m[0].length >< fp){< token.value.length && !found; i++) {<') {< 2)< 0) {< config.height &&
< first; row++) {< config.firstRow)< oldConfig.firstRow)< config.firstRow)< oldConfig.firstRow) {
<") {
19069